9 lines
107 B
Go

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