10 lines
312 B
JavaScript
Raw Normal View History

const NodeHelper = require("node_helper");
2021-02-18 19:14:53 +01:00
const Log = require("logger");
module.exports = NodeHelper.create({
// Override start method.
start: function () {
Log.warn(`The module '${this.name}' is deprecated in favor of the 'weather'-module, please refer to the documentation for a migration path`);
}
});