Exemple #1
0
 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),
         ))
Exemple #2
0
 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))
Exemple #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))
Exemple #4
0
 async def rm(self, container: FileContainer, paths: List[str]) -> None:
     await self.stub.rm(
         RmRequest(paths=paths,
                   container=file_container_to_grpc(container)))
Exemple #5
0
 async def rm(self, bundle_id: str, paths: List[str]) -> None:
     await self.stub.rm(RmRequest(bundle_id=bundle_id, paths=paths))