mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-21 11:46:19 +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")
|
||
|
)
|