Files
f0ckm/src/inc/halls_cache.mjs
2026-04-25 19:51:52 +02:00

14 lines
329 B
JavaScript

import db from "./sql.mjs";
let hallsCache = [];
export const updateHallsCache = async () => {
try {
hallsCache = await db`SELECT id, name, slug, rating FROM halls ORDER BY name ASC`;
} catch (e) {
console.error('[HALLS CACHE] Failed to update:', e);
}
};
export const getHalls = () => hallsCache;