2022-10-09 22:30:32 +02:00
|
|
|
import { Module } from "@nestjs/common";
|
|
|
|
import { ConfigModule } from "@nestjs/config";
|
|
|
|
import { ScheduleModule } from "@nestjs/schedule";
|
|
|
|
import { AuthModule } from "./auth/auth.module";
|
2022-10-16 00:25:32 +02:00
|
|
|
import { JobsService } from "./jobs/jobs.service";
|
2022-10-09 22:30:32 +02:00
|
|
|
|
2022-10-24 12:11:10 +02:00
|
|
|
import { APP_GUARD } from "@nestjs/core";
|
|
|
|
import { ThrottlerGuard, ThrottlerModule } from "@nestjs/throttler";
|
2022-10-09 22:30:32 +02:00
|
|
|
import { FileController } from "./file/file.controller";
|
|
|
|
import { FileModule } from "./file/file.module";
|
|
|
|
import { PrismaModule } from "./prisma/prisma.module";
|
|
|
|
import { PrismaService } from "./prisma/prisma.service";
|
|
|
|
import { ShareController } from "./share/share.controller";
|
|
|
|
import { ShareModule } from "./share/share.module";
|
|
|
|
import { UserController } from "./user/user.controller";
|
|
|
|
|
|
|
|
@Module({
|
|
|
|
imports: [
|
|
|
|
AuthModule,
|
|
|
|
ShareModule,
|
|
|
|
FileModule,
|
|
|
|
PrismaModule,
|
|
|
|
ConfigModule.forRoot({ isGlobal: true }),
|
2022-10-24 12:11:10 +02:00
|
|
|
ThrottlerModule.forRoot({
|
|
|
|
ttl: 60,
|
|
|
|
limit: 100,
|
|
|
|
}),
|
2022-10-09 22:30:32 +02:00
|
|
|
ScheduleModule.forRoot(),
|
|
|
|
],
|
2022-10-24 12:11:10 +02:00
|
|
|
providers: [
|
|
|
|
PrismaService,
|
|
|
|
JobsService,
|
|
|
|
{
|
|
|
|
provide: APP_GUARD,
|
|
|
|
useClass: ThrottlerGuard,
|
|
|
|
},
|
|
|
|
],
|
2022-10-09 22:30:32 +02:00
|
|
|
controllers: [UserController, ShareController, FileController],
|
|
|
|
})
|
|
|
|
export class AppModule {}
|