habits-cli
Version:
The habits application seeks to help individuals build up healthy habits.
13 lines (12 loc) • 443 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.auth = void 0;
var models_1 = require("../../models");
var signin_1 = require("./signin");
var signup_1 = require("./signup");
var signout_1 = require("./signout");
exports.auth = new models_1.CommandGroup("auth", "authentication").withSubcommands([
new signin_1.SignInCommand(),
new signup_1.SignUpCommand(),
new signout_1.SignOutCommand(),
]);