/** Cookie / bearer token for the session (opaque; DB may store the raw value or a legacy SHA-256 hash). */
export const SESSION_COOKIE_NAME = "session-token"

/** Sliding session / cookie max-age: 7 days in seconds */
export const SESSION_MAX_AGE_SEC = 7 * 24 * 60 * 60
