Ruby-Cogs/levelup/commands/__init__.py
Valerie 477974d53c
Some checks are pending
Run pre-commit / Run pre-commit (push) Waiting to run
Upload 2 Cogs & Update README
2025-05-23 01:30:53 -04:00

19 lines
354 B
Python

from ..abc import CompositeMetaClass
from .admin import Admin
from .data import DataAdmin
from .owner import Owner
from .stars import Stars
from .user import User
from .weekly import Weekly
class Commands(
Admin,
DataAdmin,
Owner,
Stars,
User,
Weekly,
metaclass=CompositeMetaClass,
):
"""Subclass all command classes"""