feat: 后端也添加了写了一半的人机验证模块
This commit is contained in:
10
apps/backend/src/captcha/captcha.controller.ts
Normal file
10
apps/backend/src/captcha/captcha.controller.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { Controller, Get } from '@nestjs/common';
|
||||
import { GetCaptchaDto } from './dto/get-captcha.dto';
|
||||
|
||||
@Controller('captcha')
|
||||
export class CaptchaController {
|
||||
@Get()
|
||||
async getCaptcha(dto: GetCaptchaDto) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user