because I got bored of customising my CV for every job
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 {}