Fetch service information including parsed TCB info.
(self)
| 714 | return GetQuoteResponse(**result) |
| 715 | |
| 716 | async def info(self) -> InfoResponse[TcbInfo]: |
| 717 | """Fetch service information including parsed TCB info.""" |
| 718 | result = await self._send_rpc_request("Info", {}) |
| 719 | return InfoResponse.parse_response(result, TcbInfoV03x) |
| 720 | |
| 721 | |
| 722 | class TappdClient(DstackClient): |
nothing calls this directly
no test coverage detected