Added scene tags filter.

This commit is contained in:
2024-01-08 02:21:57 +01:00
parent 5db4f18123
commit 7d5efd12ef
17 changed files with 1136 additions and 136 deletions

10
src/app.js Normal file
View File

@@ -0,0 +1,10 @@
import initServer from './web/server.js';
import { cacheTagIds } from './tags.js';
async function init() {
await cacheTagIds();
initServer();
}
init();