mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-11 07:38:49 +00:00
authentication module done
This commit is contained in:
11
libs/common/src/helper/helper.module.ts
Normal file
11
libs/common/src/helper/helper.module.ts
Normal 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 {}
|
Reference in New Issue
Block a user