mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
13 lines
276 B
Python
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
|