Initial commit

This commit is contained in:
2026-04-15 11:51:49 -07:00
commit 18dd8703e1
197 changed files with 45676 additions and 0 deletions

7
core/logMessage.js Normal file
View File

@@ -0,0 +1,7 @@
var fs = require('fs');
exports.logStuff = function (msg) {
fs.appendFile('message.txt', msg, function (err) {
if (err) throw err;
console.log('Saved!');
});
};