feat: encryption module

This commit is contained in:
Philipinho
2026-05-16 23:40:43 +01:00
parent fcb2b08cf3
commit 1982a0ed1e
5 changed files with 316 additions and 0 deletions
@@ -0,0 +1,9 @@
import { Global, Module } from '@nestjs/common';
import { EncryptionService } from './encryption.service';
@Global()
@Module({
providers: [EncryptionService],
exports: [EncryptionService],
})
export class EncryptionModule {}