8 lines
135 B
Go
8 lines
135 B
Go
|
package logger
|
||
|
|
||
|
type Logger interface {
|
||
|
Print(v ...interface{})
|
||
|
Println(v ...interface{})
|
||
|
Printf(format string, v ...interface{})
|
||
|
}
|