habits-cli
Version:
The habits application seeks to help individuals build up healthy habits.
8 lines (7 loc) • 323 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.config = void 0;
var models_1 = require("../../models");
var set_1 = require("./set");
var get_1 = require("./get");
exports.config = new models_1.CommandGroup("config", "configure habits client").withSubcommands([set_1.set, get_1.get]);