2023-05-10 11:49:48 -06:00

9 lines
239 B
TypeScript

function getThemeList() {
const fs = require("fs");
const json_file = fs.readFileSync("data/themes.json");
const json = JSON.parse(json_file);
const themes = json.themes;
return themes;
}
module.exports = getThemeList;