mirror-nourybot-matrix/pkg/commands/errors.go
2024-01-11 02:33:25 +01:00

8 lines
172 B
Go

package commands
import "errors"
var (
ErrInternalServerError = errors.New("internal server error")
ErrWeatherLocationNotFound = errors.New("location not found")
)