mirror of
https://github.com/sstent/go-garth-cli.git
synced 2025-12-06 08:02:01 +00:00
12 lines
252 B
Go
12 lines
252 B
Go
package connect
|
|
|
|
// Logger defines the interface understood by the Connect client for logging.
|
|
type Logger interface {
|
|
Printf(format string, v ...interface{})
|
|
}
|
|
|
|
type discardLog struct{}
|
|
|
|
func (*discardLog) Printf(format string, v ...interface{}) {
|
|
}
|