vika-server / src /app.module.ts
Viktoria435
Initialize NestJS project with basic structure and configurations
22df730
raw
history blame contribute delete
450 Bytes
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { BookModule } from './book/book.module';
import { WorkerModule } from './worker/worker.module';
import { VisitorModule } from './visitor/visitor.module';
@Module({
imports: [BookModule, WorkerModule, VisitorModule],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}