curre/logger.go
2022-09-10 01:19:29 +02:00

7 lines
104 B
Go

package curre
type Logger interface {
Info(msg string, args ...any)
Error(msg string, args ...any)
}