because I got bored of customising my CV for every job
at main 14 lines 408 B view raw
1import { Global, Module } from "@nestjs/common"; 2import { CorsConfigService } from "./cors.config"; 3import { JwtConfigService } from "./jwt.config"; 4 5/** 6 * Global configuration module 7 * Provides configuration services throughout the application 8 */ 9@Global() 10@Module({ 11 providers: [JwtConfigService, CorsConfigService], 12 exports: [JwtConfigService, CorsConfigService], 13}) 14export class AppConfigModule {}