2017-07-31 01:40:31 +02:00

13 lines
276 B
Python

from typing import Tuple
class BaseDriver:
def get_driver(self):
raise NotImplementedError
def get(self, identifiers: Tuple[str]):
raise NotImplementedError
async def set(self, identifiers: Tuple[str], value):
raise NotImplementedError