mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
7 lines
254 B
TypeScript
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);
|