コード例 #1
0
ファイル: client.py プロジェクト: trantrungtin/idb
 async def rm(self, container: FileContainer, paths: List[str]) -> None:
     await self.stub.rm(
         RmRequest(
             bundle_id=file_container_to_bundle_id_deprecated(container),
             paths=paths,
             container=file_container_to_grpc(container),
         ))
コード例 #2
0
ファイル: grpc.py プロジェクト: zeng4250538/idb
 async def rm(self, bundle_id: str, paths: List[str]) -> None:
     async with self.get_stub() as stub:
         await stub.rm(RmRequest(bundle_id=bundle_id, paths=paths))
コード例 #3
0
async def client(client: CompanionClient, bundle_id: str, paths: List[str]) -> None:
    await client.stub.rm(RmRequest(bundle_id=bundle_id, paths=paths))
コード例 #4
0
ファイル: client.py プロジェクト: iqqmuT/idb
 async def rm(self, container: FileContainer, paths: List[str]) -> None:
     await self.stub.rm(
         RmRequest(paths=paths,
                   container=file_container_to_grpc(container)))
コード例 #5
0
 async def rm(self, bundle_id: str, paths: List[str]) -> None:
     await self.stub.rm(RmRequest(bundle_id=bundle_id, paths=paths))