init command

This commit is contained in:
grngxd 2025-06-24 13:56:56 +01:00
parent 1642272fae
commit f724fc0ecb
5 changed files with 251 additions and 220 deletions

View file

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