common-cents-api/src/app.controller.ts
Joe 61e5a49745 added bruno files
Co-authored-by: Joe Arndt <jmarndt@users.noreply.github.com>
Reviewed-on: #1
2025-12-10 21:59:21 +00:00

12 lines
275 B
TypeScript

import { Controller, Get } from '@nestjs/common';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) { }
@Get()
getHello(): string {
return this.appService.getHello();
}
}