inversify
Version:
A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.
15 lines (14 loc) • 386 B
JavaScript
;
var guid_1 = require("../utils/guid");
var Context = (function () {
function Context(kernel) {
this.guid = guid_1.default();
this.kernel = kernel;
}
Context.prototype.addPlan = function (plan) {
this.plan = plan;
};
return Context;
}());
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = Context;