Added app configuration, for now specific to user registration.

This commit is contained in:
Tom
2025-06-18 16:51:46 +00:00
parent 6ac9a2f1ec
commit bde574ccad
5 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,7 @@
import { Module } from '@nestjs/common';
import { ConfigController } from './config/config.controller';
@Module({
controllers: [ConfigController]
})
export class AssetModule {}