Aggregating channels, filter inoperable.

This commit is contained in:
2024-01-09 02:26:32 +01:00
parent 58f7ca0d89
commit d242eb3b73
17 changed files with 381 additions and 68 deletions

View File

@@ -1,8 +1,12 @@
import initServer from './web/server.js';
import { cacheTagIds } from './tags.js';
import { cacheEntityIds } from './entities.js';
async function init() {
await cacheTagIds();
await Promise.all([
cacheTagIds(),
cacheEntityIds(),
]);
initServer();
}