file rename

This commit is contained in:
Wolfgang Hottgenroth
2017-08-09 00:24:22 +02:00
parent dd7f313d0c
commit 09d7ea8ace
4 changed files with 3 additions and 3 deletions

2
dist/main.js vendored
View File

@ -1,7 +1,7 @@
"use strict"; "use strict";
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
const log = require("./log"); const log = require("./log");
const mqtt = require("./mqttclient"); const mqtt = require("./mqttdispatcher");
class Dispatcher { class Dispatcher {
constructor() { constructor() {
this._mqttDispatcher = new mqtt.MqttDispatcher(); this._mqttDispatcher = new mqtt.MqttDispatcher();

View File

@ -86,4 +86,4 @@ class MqttDispatcher {
} }
} }
exports.MqttDispatcher = MqttDispatcher; exports.MqttDispatcher = MqttDispatcher;
//# sourceMappingURL=mqttclient.js.map //# sourceMappingURL=mqttdispatcher.js.map

View File

@ -1,5 +1,5 @@
import * as log from './log' import * as log from './log'
import * as mqtt from './mqttclient' import * as mqtt from './mqttdispatcher'
import * as callchain from './callchain' import * as callchain from './callchain'