chore: reset history

This commit is contained in:
grngxd 2025-06-24 13:32:46 +01:00
commit 3a0b1a80c8
10 changed files with 355 additions and 0 deletions

6
cmd/index.ts Normal file
View file

@ -0,0 +1,6 @@
import type { Command } from "commander";
import { registerSyncCommand } from "./sync";
export const registerCommands = (p: Command) => {
registerSyncCommand(p);
}