getimap/vendor/github.com/emersion/go-imap/logger.go
2020-03-10 13:57:28 +01:00

9 lines
242 B
Go

package imap
// Logger is the behaviour used by server/client to
// report errors for accepting connections and unexpected behavior from handlers.
type Logger interface {
Printf(format string, v ...interface{})
Println(v ...interface{})
}