1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-01-10 00:43:36 +02:00
pocketbase/tokens/tokens.go

8 lines
162 B
Go
Raw Normal View History

2022-07-06 23:19:05 +02:00
// Package tokens implements various user and admin tokens generation methods.
package tokens
2022-10-30 10:28:14 +02:00
const (
TypeAdmin = "admin"
TypeAuthRecord = "authRecord"
)