25 lines
770 B
TypeScript
25 lines
770 B
TypeScript
|
|
import { Module } from '@nestjs/common';
|
||
|
|
import { AppController } from './app.controller';
|
||
|
|
import { AppService } from './app.service';
|
||
|
|
import { WaitlistModule } from './waitlist/waitlist.module';
|
||
|
|
import { UsersModule } from './users/users.module';
|
||
|
|
import { LearningModule } from './learning/learning.module';
|
||
|
|
import { AiModule } from './ai/ai.module';
|
||
|
|
import { FeedbackModule } from './feedback/feedback.module';
|
||
|
|
import { AuthModule } from './auth/auth.module';
|
||
|
|
import { KnowledgeModule } from './knowledge/knowledge.module';
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
imports: [
|
||
|
|
WaitlistModule,
|
||
|
|
UsersModule,
|
||
|
|
LearningModule,
|
||
|
|
AiModule,
|
||
|
|
FeedbackModule,
|
||
|
|
AuthModule,
|
||
|
|
KnowledgeModule,
|
||
|
|
],
|
||
|
|
controllers: [AppController],
|
||
|
|
providers: [AppService],
|
||
|
|
})
|
||
|
|
export class AppModule {}
|