Updated `__init__.py` to import specific cog classes and added asynchronous `setup` functions for each. Modified `info.json` to improve the formatting of the "author" field for better readability.
4 lines
84 B
Python
4 lines
84 B
Python
from .hiring import Hiring
|
|
|
|
async def setup(bot):
|
|
await bot.add_cog(Hiring(bot)) |