lambdaorm-cli
Version:
The lambdaorm command line interface
26 lines • 1.75 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.fetch = exports.pull = exports.incorporate = exports.introspect = exports.schema = exports.drop = exports._export = exports._import = exports.model = exports.constraints = exports.parameters = exports.metadata = exports.plan = exports.execute = exports.build = exports.push = exports.init = exports.versionGlobal = exports.version = void 0;
const facade_1 = require("./facade");
const application_1 = require("../../application");
const ormCliService = new facade_1.CliFacadeBuilder().build();
exports.version = new application_1.Version(ormCliService);
exports.versionGlobal = new application_1.VersionGlobal(ormCliService);
exports.init = new application_1.Init(ormCliService);
exports.push = new application_1.Push(ormCliService);
exports.build = new application_1.Build(ormCliService);
exports.execute = new application_1.Execute(ormCliService);
exports.plan = new application_1.Plan(ormCliService);
exports.metadata = new application_1.Metadata(ormCliService);
exports.parameters = new application_1.Parameters(ormCliService);
exports.constraints = new application_1.Constraints(ormCliService);
exports.model = new application_1.Model(ormCliService);
exports._import = new application_1.Import(ormCliService);
exports._export = new application_1.Export(ormCliService);
exports.drop = new application_1.Drop(ormCliService);
exports.schema = new application_1.Schema(ormCliService);
exports.introspect = new application_1.Introspect(ormCliService);
exports.incorporate = new application_1.Incorporate(ormCliService);
exports.pull = new application_1.Pull(ormCliService);
exports.fetch = new application_1.Fetch(ormCliService);
//# sourceMappingURL=usesCases.js.map