(self)
| 572 | } |
| 573 | |
| 574 | async fn reload_vms(self) -> Result<ReloadVmsResponse> { |
| 575 | info!("Reloading VMs directory and syncing with memory state"); |
| 576 | self.app.reload_vms_sync().await |
| 577 | } |
| 578 | |
| 579 | async fn report_dhcp_lease(self, request: DhcpLeaseRequest) -> Result<()> { |
| 580 | self.app.report_dhcp_lease(&request.mac, &request.ip).await; |
nothing calls this directly
no test coverage detected