mirror of
https://git.sr.ht/~rjarry/aerc
synced 2025-12-23 12:14:14 +01:00
No functional change. This will allow reuse in other parts of aerc. Signed-off-by: Robin Jarry <robin@jarry.cc> Tested-by: Koni Marti <koni.marti@gmail.com>
10 lines
234 B
Go
10 lines
234 B
Go
package worker
|
|
|
|
// the following workers are always enabled
|
|
import (
|
|
_ "git.sr.ht/~rjarry/aerc/worker/imap"
|
|
_ "git.sr.ht/~rjarry/aerc/worker/jmap"
|
|
_ "git.sr.ht/~rjarry/aerc/worker/maildir"
|
|
_ "git.sr.ht/~rjarry/aerc/worker/mbox"
|
|
)
|