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

11 lines
210 B
Go

package connect
// Error is a type implementing the error interface. We use this to define
// constant errors.
type Error string
// Error implements error.
func (e Error) Error() string {
return string(e)
}