rogueserver/db/errors.go

9 lines
158 B
Go
Raw Normal View History

2024-05-15 20:57:58 +02:00
package db
import "errors"
var (
ErrAccountAlreadyExists = errors.New("account already exists")
ErrTokenNotFound = errors.New("token not found")
)