mirror of
https://github.com/qdm12/gluetun.git
synced 2025-12-10 20:07:32 -06:00
22 lines
232 B
Go
22 lines
232 B
Go
package httpproxy
|
|
|
|
type Logger interface {
|
|
Debug(s string)
|
|
infoer
|
|
Warn(s string)
|
|
errorer
|
|
}
|
|
|
|
type infoErrorer interface {
|
|
infoer
|
|
errorer
|
|
}
|
|
|
|
type infoer interface {
|
|
Info(s string)
|
|
}
|
|
|
|
type errorer interface {
|
|
Error(s string)
|
|
}
|