mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
* Make config get async * Asyncify alias * Asyncify bank * Asyncify cog manager * IT BOOTS * Asyncify core commands * Asyncify repo manager * Asyncify downloader * Asyncify economy * Asyncify alias TESTS * Asyncify economy TESTS * Asyncify downloader TESTS * Asyncify config TESTS * A bank thing * Asyncify Bank cog * Warning message in docs * Update docs with await syntax * Update docs with await syntax
13 lines
282 B
Python
13 lines
282 B
Python
from typing import Tuple
|
|
|
|
|
|
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
|