mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
10 lines
312 B
JavaScript
10 lines
312 B
JavaScript
const NodeHelper = require("node_helper");
|
|
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`);
|
|
}
|
|
});
|