0
0
Fork 0
misskey-tools/src/app.ts
2020-09-08 22:10:21 +09:00

8 lines
No EOL
199 B
TypeScript

import { initDb } from './services/db';
import 'reflect-metadata';
(async () => {
await initDb();
(await import('./services/worker')).default();
(await import('./server/server')).default();
})();