()
| 45 | // reports both planes and will show it coming back if this becomes static. |
| 46 | let app: ReturnType<typeof import("./app").cloudApiHandler> | undefined; |
| 47 | const getApp = async (): Promise<NonNullable<typeof app>> => |
| 48 | (app ??= (await import("./app")).cloudApiHandler()); |
| 49 | |
| 50 | const SESSION_COOKIE = "wos-session"; |
| 51 | const OAUTH_CALLBACK_PATH = "/api/oauth/callback"; |