future-id/mdr-cli

View on GitHub
src/commands/dns/record/default.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { SubcommandDefinition } from "clime";

export const subcommands: SubcommandDefinition[] = [
    {
        name: "add",
        alias: "new",
        brief: "Add a new record"
    },
    {
        name: "remove",
        aliases: [
            "delete",
            "del",
            "rm"
        ],
        brief: "Delete an existing record"
    }
];