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