aboutsummaryrefslogtreecommitdiffstats
path: root/bot/utils/__init__.py
blob: c5a12d5e3b854ed2fe8ae72ef8b29a59f7f26860 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
from abc import ABCMeta

from discord.ext.commands import CogMeta

from bot.utils.redis_cache import RedisCache

__all__ = ['RedisCache', 'CogABCMeta']


class CogABCMeta(CogMeta, ABCMeta):
    """Metaclass for ABCs meant to be implemented as Cogs."""

    pass