mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-16 09:41:31 +10:00
11 lines
206 B
TypeScript
11 lines
206 B
TypeScript
import { Global, Module } from "@nestjs/common";
|
|
|
|
import { UtilsService } from "./utils.service";
|
|
|
|
@Global()
|
|
@Module({
|
|
providers: [UtilsService],
|
|
exports: [UtilsService],
|
|
})
|
|
export class UtilsModule {}
|