authentication module done

This commit is contained in:
VirajBrainvire
2024-02-26 11:23:44 +05:30
parent 4ffd94ec78
commit 0764793874
75 changed files with 2111 additions and 89 deletions

View File

@ -0,0 +1,11 @@
import { Global, Module } from '@nestjs/common';
import { HelperHashService } from './services';
@Global()
@Module({
providers: [HelperHashService],
exports: [HelperHashService],
controllers: [],
imports: [],
})
export class HelperModule {}