mirror of
https://github.com/qdm12/gluetun.git
synced 2025-12-11 13:56:50 -06:00
13 lines
156 B
Go
13 lines
156 B
Go
package httpproxy
|
|
|
|
type Logger interface {
|
|
infoErrorer
|
|
Debug(s string)
|
|
Warn(s string)
|
|
}
|
|
|
|
type infoErrorer interface {
|
|
Info(s string)
|
|
Error(s string)
|
|
}
|