vika-server / src /worker /worker.module.ts
Viktoria435
Initialize NestJS project with basic structure and configurations
22df730
raw
history blame contribute delete
283 Bytes
import { Module } from '@nestjs/common';
import { WorkerController } from './worker.controller';
import { WorkerService } from './worker.service';
@Module({
controllers: [WorkerController],
providers: [WorkerService],
exports: [WorkerService],
})
export class WorkerModule {}