added bruno files

This commit is contained in:
Joe Arndt 2025-12-10 11:28:21 -06:00
parent cf71891443
commit 00043c6b59
5 changed files with 26 additions and 2 deletions

View file

@ -3,7 +3,7 @@ import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
constructor(private readonly appService: AppService) { }
@Get()
getHello(): string {

View file

@ -1,8 +1,9 @@
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { NestExpressApplication } from '@nestjs/platform-express';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
const app = await NestFactory.create<NestExpressApplication>(AppModule);
await app.listen(process.env.PORT ?? 3000);
}
bootstrap();