mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-26 13:20:41 +03:00
6 lines
169 B
JavaScript
6 lines
169 B
JavaScript
|
const fs = require("fs");
|
||
|
|
||
|
for (const theme of fs.readdirSync("./themes")) {
|
||
|
if (theme === "index.js") continue;
|
||
|
module.exports[theme] = require(`./${theme}`);
|
||
|
}
|