| 3 | |
| 4 | @Controller() |
| 5 | export class AppController { |
| 6 | constructor(private readonly appService: AppService) {} |
| 7 | |
| 8 | @Get('hello') |
| 9 | getHello(): { message: string } { |
| 10 | return this.appService.getHello(); |
| 11 | } |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected