mirror-nourybot/pkg/commands/errors.go
2024-02-20 22:36:33 +01:00

9 lines
172 B
Go

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