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