This repository has been archived on 2022-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
tacitus/logger.go

6 lines
87 B
Go
Raw Normal View History

2017-09-10 10:18:48 -07:00
package tacitus
type Logger interface {
2017-09-10 10:57:35 -07:00
Info(format string, params ...interface{})
2017-09-10 10:18:48 -07:00
}