mirror-nourybot-matrix/internal/commands/commands.go
2023-05-06 22:30:53 +02:00

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")
)