Nexus/pkg/nex/sec/const.go

13 lines
200 B
Go
Raw Normal View History

2024-10-21 16:12:28 +00:00
package sec
const (
CookieAccessToken = "nex_atk"
CookieRefreshToken = "nex_rtk"
)
const (
TokenTypeAccess = "access_token"
RefreshTokenType = "refresh_token"
IdTokenType = "id_token"
)