blob: fa96cdc6a7ea69f423cd80b7e8b0299a1f8df196 (
plain)
1
2
3
4
5
6
7
8
|
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{})
}
|