mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-03 03:27:13 +08:00
9 lines
158 B
Go
9 lines
158 B
Go
package db
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrAccountAlreadyExists = errors.New("account already exists")
|
|
ErrTokenNotFound = errors.New("token not found")
|
|
)
|