from abc import ABC from frostfs_testlib.cli.frostfs_cli.cli import FrostfsCli from . import interfaces class GrpcClientWrapper(ABC): def __init__(self) -> None: self.cli: FrostfsCli self.object: interfaces.ObjectInterface self.container: interfaces.ContainerInterface self.netmap: interfaces.NetmapInterface self.ape_manager: interfaces.ApeManagerInterface