forked from TrueCloudLab/frostfs-testlib
Signed-off-by: Dmitriy Zayakin Signed-off-by: Dmitriy Zayakin <d.zayakin@yadro.com>
14 lines
406 B
Python
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
|