frostfs-testlib/src/frostfs_testlib/storage/grpc_operations/interfaces_wrapper.py
Dmitriy Zayakin c27fb5747b [#376] Added ape manager group command to grpc client
Signed-off-by: Dmitriy Zayakin
Signed-off-by: Dmitriy Zayakin <d.zayakin@yadro.com>
2025-05-06 12:50:11 +00:00

14 lines
406 B
Python

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