mirror of
https://github.com/pocketbase/pocketbase.git
synced 2026-09-08 15:41:18 +02:00
8 lines
162 B
Go
8 lines
162 B
Go
// Package tokens implements various user and admin tokens generation methods.
|
|
package tokens
|
|
|
|
const (
|
|
TypeAdmin = "admin"
|
|
TypeAuthRecord = "authRecord"
|
|
)
|