2023-05-06 21:37:21 +02:00
|
|
|
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
|
|
|
)
|