Files

10 lines
167 B
Go
Raw Permalink Normal View History

package httpserver
// Logger is the logger interface accepted by the
// HTTP server.
type Logger interface {
Info(msg string)
Warn(msg string)
Error(msg string)
}