feat: 后端也添加了写了一半的人机验证模块
This commit is contained in:
11
apps/backend/src/captcha/captcha.module.ts
Normal file
11
apps/backend/src/captcha/captcha.module.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { CaptchaService } from './captcha.service';
|
||||
import { CaptchaController } from './captcha.controller';
|
||||
import { CaptchaRateLimitService } from './service/rate-limit';
|
||||
|
||||
@Module({
|
||||
providers: [CaptchaService, CaptchaRateLimitService],
|
||||
controllers: [CaptchaController],
|
||||
imports: [],
|
||||
})
|
||||
export class CaptchaModule { }
|
||||
Reference in New Issue
Block a user