prox5/logger/logger.go

9 lines
203 B
Go
Raw Normal View History

package logger
type Logger interface {
2022-12-27 12:58:10 +00:00
// Print implementations at this time are actually println
Print(str string)
Printf(format string, a ...interface{})
2022-10-19 12:36:31 +00:00
Errorf(format string, a ...interface{})
}