hydra/src/main/events/auth/open-auth-window.ts
2024-06-28 22:01:42 +01:00

7 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);