bunext/commands/init/index.ts
2025-11-05 07:12:15 +01:00

11 lines
298 B
TypeScript

import { Command } from "commander";
import AppNames from "../../utils/grab-app-names";
export default function () {
return new Command("init")
.description("Initialize project")
.action(async () => {
console.log(`Initializing ${AppNames.name} ...`);
});
}