| 20 | const SHARED_FILE = join(AUTH_DIR, 'shared.json') |
| 21 | |
| 22 | export interface SharedStudent { |
| 23 | email: string |
| 24 | username: string |
| 25 | password: string |
| 26 | id: number |
| 27 | } |
| 28 | |
| 29 | export function ensureAuthDir(): void { |
| 30 | if (!existsSync(AUTH_DIR)) mkdirSync(AUTH_DIR, { recursive: true }) |
nothing calls this directly
no outgoing calls
no test coverage detected