(self)
| 34 | |
| 35 | impl HostApiRpc for HostApiHandler { |
| 36 | async fn info(self) -> Result<HostInfo> { |
| 37 | let host_info = HostInfo { |
| 38 | name: "dstack VMM".to_string(), |
| 39 | version: env!("CARGO_PKG_VERSION").to_string(), |
| 40 | }; |
| 41 | Ok(host_info) |
| 42 | } |
| 43 | |
| 44 | async fn notify(self, request: Notification) -> Result<()> { |
| 45 | self.app |
no outgoing calls
no test coverage detected