UNPKG

habits-cli

Version:

The habits application seeks to help individuals build up healthy habits.

17 lines (16 loc) 553 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.property = void 0; var models_1 = require("../../models"); var update_1 = require("./update"); var list_1 = require("./list"); var create_1 = require("./create"); var remove_1 = require("./remove"); exports.property = new models_1.CommandGroup("property", "manage your properties") .withAliases(["prop"]) .withSubcommands([ new list_1.ListCommand(), new update_1.UpdateCommand(), new create_1.CreateCommand(), new remove_1.RemoveCommand(), ]);