discordbot/gurt/__init__.py
2025-06-05 21:31:06 -06:00

9 lines
272 B
Python

# This file makes the 'gurt' 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 gurt import setup" work
__all__ = ["setup"]