返回 AiToEarn
models-config.controller.ts
根目录 / project / aitoearn-backend / apps / aitoearn-ai / src / core / ai / models-config / models-config.controller.ts
1 import { Controller } from '@nestjs/common'
2 import { ApiTags } from '@nestjs/swagger'
3
4 @ApiTags('Me/Ai')
5 @Controller('ai')
6 export class ModelsConfigController {
7 constructor(
8 ) {}
9 }
10
10 lines TYPESCRIPT