bootstrap

This commit is contained in:
Ryan Huang
2024-04-25 13:15:24 -04:00
parent d5c2b364d0
commit d66e336ce0
5 changed files with 50 additions and 31 deletions

View File

@ -1,4 +1,5 @@
import { run, subcommands } from "cmd-ts";
import { bootstrap } from "./subcommands/bootstrap";
import { create } from "./subcommands/create";
import { ls, ps } from "./subcommands/list";
import { load } from "./subcommands/load";
@ -24,6 +25,7 @@ const cli = subcommands({
unload,
create,
version,
bootstrap,
},
});