mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-23 10:51:02 +00:00
6 lines
154 B
TypeScript
6 lines
154 B
TypeScript
import { gameRepository } from "@main/repository";
|
|
|
|
export const clearGamesRemoteIds = () => {
|
|
return gameRepository.update({}, { remoteId: null });
|
|
};
|