7 lines
99 B
Go
7 lines
99 B
Go
package year25
|
|
|
|
type Logger interface {
|
|
Printf(string, ...interface{})
|
|
Println(...interface{})
|
|
}
|