forked from TrueCloudLab/frostfs-testlib
10 lines
260 B
Python
10 lines
260 B
Python
from abc import ABC
|
|
|
|
from . import interfaces
|
|
|
|
|
|
class GrpcClientWrapper(ABC):
|
|
def __init__(self) -> None:
|
|
self.object: interfaces.ObjectInterface
|
|
self.container: interfaces.ContainerInterface
|
|
self.netmap: interfaces.NetmapInterface
|