Files
crockery/vendor/github.com/emersion/go-imap/logger.go
2018-03-05 12:19:04 +00: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{})
}