live-streamer/logger/log.go

8 lines
135 B
Go
Raw Normal View History

2024-10-23 10:47:37 -04:00
package logger
type Logger interface {
Print(v ...interface{})
Println(v ...interface{})
Printf(format string, v ...interface{})
}