refactor: no more pmapifactory

This commit is contained in:
James Houlahan
2020-04-08 13:07:13 +02:00
parent 5bf4d9c6f5
commit db02eb694d
22 changed files with 70 additions and 76 deletions

View File

@ -17,7 +17,7 @@
package imap
import "github.com/ProtonMail/proton-bridge/pkg/config"
import "github.com/ProtonMail/proton-bridge/pkg/logs"
const (
fetchMessagesWorkers = 5 // In how many workers to fetch message (group list on IMAP).
@ -31,5 +31,5 @@ const (
)
var (
log = config.GetLogEntry("imap") //nolint[gochecknoglobals]
log = logs.GetLogEntry("imap") //nolint[gochecknoglobals]
)