This commit is contained in:
SepehrYahyaee
2026-05-24 10:10:17 +03:30
parent 91221a6848
commit af875a4773
20 changed files with 439 additions and 9 deletions

View File

@@ -0,0 +1,8 @@
import { Module } from "@nestjs/common";
import { CaptchaService } from "./captcha.service";
@Module({
providers: [CaptchaService],
exports: [CaptchaService],
})
export class CaptchaModule {}