discordbot/wheatley/__init__.py
2025-04-28 16:17:42 -06:00

9 lines
280 B
Python

# This file makes the 'wheatley' directory a Python package.
# It allows Python to properly import modules from this directory
# Export the setup function for discord.py extension loading
from .cog import setup
# This makes "from wheatley import setup" work
__all__ = ['setup']