Including scene actor aliases in manticore.

This commit is contained in:
2026-06-29 00:37:18 +02:00
parent fb92b9c973
commit 4b39f787c9
2 changed files with 18 additions and 10 deletions

View File

@@ -1,10 +1,12 @@
import initServer from './web/server.js';
import { initCaches } from './cache.js';
import { initSyncCron } from './sync.js';
async function init() {
await initCaches();
initServer();
initSyncCron();
}
init();