(self, request: Notification)
| 42 | } |
| 43 | |
| 44 | async fn notify(self, request: Notification) -> Result<()> { |
| 45 | self.app |
| 46 | .vm_event_report(self.endpoint.cid, &request.event, request.payload) |
| 47 | } |
| 48 | |
| 49 | async fn get_sealing_key(self, request: GetSealingKeyRequest) -> Result<GetSealingKeyResponse> { |
| 50 | let key_provider = &self.app.config.key_provider; |
nothing calls this directly
no test coverage detected