UNPKG

@gluestack-seal/cli

Version:
10 lines (8 loc) 242 B
import { Command } from "commander"; import action from "../actions/up"; export default async (program: Command) => { program .command("up") .description(`Starts all the services from "seal.yaml" services`) .action(action); };