This commit is contained in:
Bastian Wagner
2024-09-04 14:18:21 +02:00
parent 0c1c545e49
commit afeea2f0f2
3 changed files with 22 additions and 1 deletions

2
idp/.gitignore vendored
View File

@@ -56,4 +56,4 @@ pids
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
client /client

View File

@@ -0,0 +1,9 @@
import { Controller, Get } from '@nestjs/common';
@Controller('client')
export class ClientController {
@Get()
getMyClients() {
return [];
}
}

View File

@@ -0,0 +1,12 @@
import { Module } from '@nestjs/common';
import { NestjsFormDataModule } from 'nestjs-form-data';
import { TypeOrmModule } from '@nestjs/typeorm';
import { LoggerModule } from 'src/core/logger.module';
import { ClientController } from './client.controller';
@Module({
providers: [],
controllers: [ClientController],
imports: [NestjsFormDataModule, TypeOrmModule.forFeature([]), LoggerModule],
})
export class ClientModule {}