9 lines
272 B
Python
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']
|