@methodus/server
Version:
Server components for @methodus workflow
15 lines • 438 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ClientContainer {
constructor(clientInformation) {
if (clientInformation.path) {
this.client = require(clientInformation.path);
}
else {
this.client = clientInformation;
}
return this.client;
}
}
exports.ClientContainer = ClientContainer;
//# sourceMappingURL=client-container.js.map