mirror-nourybot-matrix/internal/commands/commands.go

9 lines
172 B
Go
Raw Normal View History

package commands
2023-05-06 22:30:53 +02:00
import "errors"
var (
2023-05-06 22:52:45 +02:00
ErrInternalServerError = errors.New("internal server error")
ErrWeatherLocationNotFound = errors.New("location not found")
2023-05-06 22:30:53 +02:00
)