authorizer/server/constants/cookie.go
2022-05-29 17:22:46 +05:30

9 lines
265 B
Go

package constants
const (
// AppCookieName is the name of the cookie that is used to store the application token
AppCookieName = "cookie"
// AdminCookieName is the name of the cookie that is used to store the admin token
AdminCookieName = "authorizer-admin"
)