habits-cli
Version:
The habits application seeks to help individuals build up healthy habits.
17 lines (16 loc) • 564 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.transaction = void 0;
var models_1 = require("../../models");
var list_1 = require("./list");
var create_1 = require("./create");
var update_1 = require("./update");
var remove_1 = require("./remove");
exports.transaction = new models_1.CommandGroup("transaction", "manage changes in points")
.withAliases(["tran"])
.withSubcommands([
new list_1.ListCommand(),
new create_1.CreateCommand(),
new update_1.UpdateCommand(),
new remove_1.RemoveCommand(),
]);