curre/logger.go

7 lines
104 B
Go
Raw Normal View History

2022-09-10 01:19:29 +02:00
package curre
type Logger interface {
Info(msg string, args ...any)
Error(msg string, args ...any)
}