chore: add all
This commit is contained in:
18
pkg/logger/logger.go
Normal file
18
pkg/logger/logger.go
Normal file
@@ -0,0 +1,18 @@
|
||||
package logger
|
||||
|
||||
type Logger interface {
|
||||
Info(a ...interface{})
|
||||
Infof(format string, a ...interface{})
|
||||
|
||||
Error(a ...interface{})
|
||||
Errorf(format string, a ...interface{})
|
||||
|
||||
Debug(a ...interface{})
|
||||
Debugf(format string, a ...interface{})
|
||||
|
||||
Warn(a ...interface{})
|
||||
Warnf(format string, a ...interface{})
|
||||
|
||||
Fatal(a ...interface{})
|
||||
Fatalf(format string, a ...interface{})
|
||||
}
|
||||
Reference in New Issue
Block a user