11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import { Controller, Get } from '@nestjs/common';
|
|
import { GetCaptchaDto } from './dto/get-captcha.dto';
|
|
|
|
@Controller('captcha')
|
|
export class CaptchaController {
|
|
@Get()
|
|
async getCaptcha(dto: GetCaptchaDto) {
|
|
|
|
}
|
|
}
|