mirror-nourybot/internal/commands/commands.go
2023-09-07 20:43:16 +02:00

8 lines
172 B
Go

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