mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
d0cb43d1f3
predb commmand either fetches the latest or fetches specific information about releases
15 lines
465 B
Go
15 lines
465 B
Go
package main
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrUserLevelNotInteger = errors.New("user level must be a number")
|
|
ErrCommandLevelNotInteger = errors.New("command level must be a number")
|
|
ErrRecordNotFound = errors.New("user not found in the database")
|
|
ErrUserInsufficientLevel = errors.New("user has insufficient level")
|
|
ErrInternalServerError = errors.New("internal server error")
|
|
ErrDuringPasteUpload = errors.New("could not upload paste")
|
|
)
|