Files
go-garth-cli/python-garmin-connect/Logger.go
2025-09-21 11:03:52 -07:00

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{}) {
}