Files
gluetun/internal/httpproxy/logger.go

13 lines
156 B
Go
Raw Normal View History

package httpproxy
type Logger interface {
infoErrorer
Debug(s string)
Warn(s string)
}
type infoErrorer interface {
Info(s string)
Error(s string)
}