Refactor cogs and update author formatting

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.
This commit is contained in:
2025-09-23 03:18:09 -04:00
parent 65ddb244fe
commit 7ea6a52a6c
5 changed files with 17 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
from .hiring import setup
from .hiring import Hiring
# This function is required for the cog to be loaded by Red.
# It simply imports the setup function from the main cog file.
async def setup(bot):
await bot.add_cog(Hiring(bot))