Files
hydra/src/main/events/auth/open-auth-window.ts
Chubby Granny Chaser 71d79a4a15 feat: adding auth window
2024-06-20 13:22:12 +01:00

8 lines
254 B
TypeScript

import { registerEvent } from "../register-event";
import { WindowManager } from "@main/services";
const openAuthWindow = async (_event: Electron.IpcMainInvokeEvent) =>
WindowManager.openAuthWindow();
registerEvent("openAuthWindow", openAuthWindow);