mirror-nourybot/pkg/commands/errors.go

9 lines
172 B
Go
Raw Normal View History

2023-09-07 20:43:16 +02:00
package commands
import "errors"
var (
ErrInternalServerError = errors.New("internal server error")
ErrWeatherLocationNotFound = errors.New("location not found")
)