| 2 | import { SessionOptions } from 'iron-session' |
| 3 | |
| 4 | export interface SessionData { |
| 5 | username: string; |
| 6 | isLoggedIn: boolean; |
| 7 | } |
| 8 | |
| 9 | export const defaultSession: SessionData = { |
| 10 | username: '', |
nothing calls this directly
no outgoing calls
no test coverage detected