mirror of
https://github.com/pocketbase/pocketbase.git
synced 2024-11-24 17:07:00 +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"
|
|
)
|