mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
14 lines
307 B
Python
14 lines
307 B
Python
from typing import Tuple
|
|
|
|
__all__ = ["BaseDriver"]
|
|
|
|
class BaseDriver:
|
|
def get_driver(self):
|
|
raise NotImplementedError
|
|
|
|
async def get(self, identifiers: Tuple[str]):
|
|
raise NotImplementedError
|
|
|
|
async def set(self, identifiers: Tuple[str], value):
|
|
raise NotImplementedError
|