ai question list
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-07-23 11:41:09 +03:30
parent 27c45974f4
commit c439fdd6f9
6 changed files with 144 additions and 5 deletions
+2 -1
View File
@@ -6,11 +6,12 @@ import { AiService } from './providers/ai.service';
import { AiChatRepository } from './repositories/ai-chat.repository';
import { AiChat } from './entities/ai-chat.entity';
import { RestaurantsModule } from '../restaurants/restaurants.module';
import { AiCrone } from './crone/ai.crone';
@Module({
imports: [MikroOrmModule.forFeature([AiChat]), JwtModule, RestaurantsModule],
controllers: [AiController],
providers: [AiService, AiChatRepository],
providers: [AiService, AiChatRepository, AiCrone],
exports: [AiChatRepository],
})
export class AiModule {}