2023-05-06 21:37:21 +02:00
|
|
|
package commands
|
2023-05-06 22:30:53 +02:00
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
|
|
|
var (
|
|
|
|
ErrEnvFileNotFound = errors.New(".env file not found")
|
|
|
|
ErrInternalServerError = errors.New("internal server error")
|
|
|
|
ErrLocationNotFound = errors.New("location not found")
|
|
|
|
)
|