mirror-nourybot-matrix/internal/commands/commands.go
2023-05-06 22:52:45 +02:00

9 lines
172 B
Go

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