blob: c8ec6222e46ab2e73b1214151ec3832bc8277d0a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package worker
import (
"git.sr.ht/~sircmpwn/aerc2/worker/imap"
"git.sr.ht/~sircmpwn/aerc2/worker/types"
"fmt"
"net/url"
)
type Worker interface {
GetMessages() chan types.WorkerMessage
PostAction(types.WorkerMessage)
Run()
}
// Guesses the appropriate worker type based on the given source string
func NewWorker(source string) (Worker, error) {
u, err := url.Parse(source)
if err != nil {
return nil, err
}
switch u.Scheme {
case "imap":
case "imaps":
return imap.NewIMAPWorker(), nil
}
return nil, fmt.Errorf("Unknown backend %s", u.Scheme)
}
|