mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-21 18:13:55 +00:00
8 lines
254 B
TypeScript
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);
|