(
private readonly busService: BusService,
private readonly redis: RedisService
)
| 20 | @UsePipes(ValidationPipe) |
| 21 | export class BusController { |
| 22 | constructor( |
| 23 | private readonly busService: BusService, |
| 24 | private readonly redis: RedisService |
| 25 | ) {} |
| 26 | @Get('schedule') |
| 27 | async getBusSchedule() { |
| 28 | return this.busService.getBusSchedule(); |
nothing calls this directly
no outgoing calls
no test coverage detected