mix/cmd/index.ts
2025-06-24 13:32:46 +01:00

6 lines
No EOL
174 B
TypeScript

import type { Command } from "commander";
import { registerSyncCommand } from "./sync";
export const registerCommands = (p: Command) => {
registerSyncCommand(p);
}