mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-11 13:56:16 +00:00
12 lines
289 B
TypeScript
12 lines
289 B
TypeScript
import { searchRepacks } from "../helpers/search-games";
|
|
import { registerEvent } from "../register-event";
|
|
|
|
const searchGameRepacks = (
|
|
_event: Electron.IpcMainInvokeEvent,
|
|
query: string
|
|
) => {
|
|
return searchRepacks(query);
|
|
};
|
|
|
|
registerEvent("searchGameRepacks", searchGameRepacks);
|