defining cookie keys for logging in

This commit is contained in:
James Tombleson 2024-05-12 09:23:00 -07:00
parent 5c0c7dfd32
commit cd76404fe8
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package domain
const (
CookieToken = "token"
CookieRefreshToken = "refreshToken"
CookieUser = "user"
)