2021-09-23 17:06:09 +00:00

20 lines
206 B
Go

package shadowsocks
type Logger interface {
debuger
infoer
errorer
}
type debuger interface {
Debug(s string)
}
type infoer interface {
Info(s string)
}
type errorer interface {
Error(s string)
}