chore: 🎉 initial commit

This commit is contained in:
UltraLionFr
2025-08-26 01:01:34 +02:00
parent bf6d61e5a3
commit 30cfbd73fc
27 changed files with 1341 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
const fs = require("fs");
const path = require("path");
const YAML = require("yaml");
function loadYAML(file) {
const filePath = path.join(__dirname, "..", file);
const content = fs.readFileSync(filePath, "utf8");
return YAML.parse(content);
}
const config = loadYAML("config.yml");
const lang = loadYAML("lang.yml");
module.exports = { config, lang };