feat: add the seed schedules

This commit is contained in:
ghost2023
2026-07-01 14:37:47 +03:00
parent abdf459289
commit b7be6d6229
2 changed files with 300 additions and 0 deletions

View File

@@ -2,7 +2,9 @@ import type Vorpal from "vorpal";
import type { CommandContext } from "./types";
import { registerSeedTestContracts } from "./seed-test-contracts.cmd";
import { registerSeedTestSchedules } from "./seed-test-schedules.cmd";
export function registerCommands(vorpal: Vorpal, ctx: CommandContext): void {
registerSeedTestContracts(vorpal, ctx);
registerSeedTestSchedules(vorpal, ctx);
}