from caspia.meadow.client import ServiceGatewayMixin
[docs]class MockService(ServiceGatewayMixin):
def __init__(self, config, storage):
self.config = config
self.storage = storage
super().__init__(config['name'])
[docs] async def simulate(self, **kwargs):
pass