0
0
Fork 0

フォルダ分け

This commit is contained in:
Xeltica 2020-09-08 20:05:22 +09:00
parent 046351a8fa
commit d20ac2c507
10 changed files with 21 additions and 21 deletions

View file

@ -1,7 +1,7 @@
import { initDb } from './db';
import { initDb } from './services/db';
(async () => {
await initDb();
(await import('./worker')).default();
(await import('./server')).default();
(await import('./services/worker')).default();
(await import('./server/server')).default();
})();