2022-06-12 01:15:14 +00:00

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)
}