mirror-nourybot-matrix/pkg/commands/errors.go

9 lines
172 B
Go
Raw Normal View History

2024-01-11 02:33:25 +01:00
package commands
import "errors"
var (
ErrInternalServerError = errors.New("internal server error")
ErrWeatherLocationNotFound = errors.New("location not found")
)