Move consts in account package to common.go

pull/4/head
maru 7 months ago
parent f395dc145b
commit 39199dc1b1
No known key found for this signature in database
GPG Key ID: 37689350E9CD0F0D

@ -21,6 +21,9 @@ const (
ArgonThreads = 4
ArgonKeySize = 32
ArgonSaltSize = 16
UUIDSize = 16
TokenSize = 32
)
var isValidUsername = regexp.MustCompile(`^\w{1,16}$`).MatchString

@ -7,11 +7,6 @@ import (
"github.com/pagefaultgames/pokerogue-server/db"
)
const (
UUIDSize = 16
TokenSize = 32
)
type RegisterRequest GenericAuthRequest
// /account/register - register account

Loading…
Cancel
Save