UNPKG

@gluestack-seal/cli

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