UNPKG

@gluestack-seal/cli

Version:
10 lines (8 loc) 224 B
import { Command } from "commander"; import action from "../actions/init"; export default async (program: Command) => { program .command("init") .description("Inits the project with seal") .action(action); };