mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-18 02:31:56 +10:00
refactor(v4.0.0-alpha): beginning of a new era
This commit is contained in:
10
apps/server/src/utils/utils.module.ts
Normal file
10
apps/server/src/utils/utils.module.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import { Global, Module } from "@nestjs/common";
|
||||
|
||||
import { UtilsService } from "./utils.service";
|
||||
|
||||
@Global()
|
||||
@Module({
|
||||
providers: [UtilsService],
|
||||
exports: [UtilsService],
|
||||
})
|
||||
export class UtilsModule {}
|
||||
Reference in New Issue
Block a user