Implementa la struttura base del plugin MEB per i pannelli solari

This commit is contained in:
Giuseppe Raffa
2026-05-12 00:51:55 +02:00
commit 4fa8923cff
3 changed files with 52 additions and 0 deletions

21
src/index.js Normal file
View File

@@ -0,0 +1,21 @@
module.exports = function (app) {
const plugin = {
id: 'meb-solars',
name: "MEB Solary Panels",
description: ""
};
plugin.schema = {
};
plugin.start = async function(options = {}) {
};
plugin.
return plugin;
}