mirror of
https://github.com/lyx0/nourybot-matrix.git
synced 2024-11-13 19:49:54 +01:00
9 lines
172 B
Go
9 lines
172 B
Go
package commands
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrInternalServerError = errors.New("internal server error")
|
|
ErrWeatherLocationNotFound = errors.New("location not found")
|
|
)
|