lot of changes for first actual use

This commit is contained in:
Wolfgang Hottgenroth
2017-08-23 15:52:37 +02:00
parent 16313c868f
commit 3797d84b4d
14 changed files with 250 additions and 81 deletions

13
dist/mongosave.js vendored Normal file
View File

@ -0,0 +1,13 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const CallChain = require("./callchain");
class MongoSave extends CallChain.ABaseChainItem {
constructor() {
super('MongoSave');
}
func(message) {
return "<<" + message + ">>";
}
}
exports.MongoSave = MongoSave;
//# sourceMappingURL=mongosave.js.map