Advent-of-Code/year25/utils.go

7 lines
99 B
Go

package year25
type Logger interface {
Printf(string, ...interface{})
Println(...interface{})
}