Hello World

This commit is contained in:
Shikiryu
2025-10-11 17:09:39 +02:00
commit e904cf52c5
9 changed files with 6917 additions and 0 deletions

11
habitica-account.js Normal file
View File

@@ -0,0 +1,11 @@
module.exports = RED => {
function HabiticaAccountNode(n) {
RED.nodes.createNode(this, n);
this.username = n.username;
this.userId = n.userId;
this.apiToken = n.apiToken;
}
RED.nodes.registerType('habitica-account', HabiticaAccountNode);
};