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