misso/consts/time.go
Nya Candy 177ae35699
chore: use time constant
for further configurable settings
2023-01-26 21:21:26 +08:00

13 lines
197 B
Go

package consts
import "time"
const (
TIME_REQUEST_VALID = 1 * time.Hour
TIME_LOGIN_REMEMBER = 10 * time.Minute
TIME_CONSENT_REMEMBER = 0 // Forever
TIME_USERINFO_CACHE = 10 * time.Minute
)