enhance(server): separate job queue process (#9662)

* enhance(server): separate job queue process

* add commands for build with swc
This commit is contained in:
syuilo
2023-01-21 14:09:01 +09:00
committed by GitHub
parent 0b4a7e8166
commit 7e89e70934
5 changed files with 27 additions and 27 deletions

View File

@ -0,0 +1,13 @@
import { Module } from '@nestjs/common';
import { ServerModule } from '@/server/ServerModule.js';
import { GlobalModule } from '@/GlobalModule.js';
import { DaemonModule } from '@/daemons/DaemonModule.js';
@Module({
imports: [
GlobalModule,
ServerModule,
DaemonModule,
],
})
export class MainModule {}