| 16 | providedIn: 'root' |
| 17 | }) |
| 18 | export class FleetService { |
| 19 | // Use httpResource to fetch fleet data from the Express backend |
| 20 | readonly unitsResource = httpResource<FleetUnit[]>(() => '/api/fleet'); |
| 21 | readonly serviceQueueResource = httpResource<ServiceTicket[]>(() => '/api/service-queue'); |
nothing calls this directly
no outgoing calls
no test coverage detected