mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 00:06:38 +00:00
10 lines
260 B
Go
10 lines
260 B
Go
package auth
|
|
|
|
const (
|
|
// DefaultSessionCookieName is the default cookie name for session storage
|
|
DefaultSessionCookieName = "auth_session"
|
|
|
|
// ErrorInternalServer is the default internal server error message
|
|
ErrorInternalServer = "Internal Server Error"
|
|
)
|