mirror-nourybot-matrix/internal/commands/commands.go

10 lines
224 B
Go
Raw Normal View History

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