mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-11 07:38:49 +00:00
12 lines
250 B
TypeScript
12 lines
250 B
TypeScript
import { Global, Module } from '@nestjs/common';
|
|
import { HelperHashService } from './services';
|
|
|
|
@Global()
|
|
@Module({
|
|
providers: [HelperHashService],
|
|
exports: [HelperHashService],
|
|
controllers: [],
|
|
imports: [],
|
|
})
|
|
export class HelperModule {}
|