Files
go-garth/python-garmin-connect/Error.go
2025-09-20 15:21:49 -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)
}