Files
gluetun/internal/httpserver/logger.go

10 lines
167 B
Go
Raw 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)
}