mirror-nourybot/internal/commands/errors.go
2023-09-08 01:36:41 +02:00

9 lines
172 B
Go

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