refactor(SideStore): help command structure

Reorganized SideStore commands to use a group structure, added individual subcommands for troubleshooting topics, and updated the help command to provide a dropdown for specific issues. This improves command discoverability and user experience.
This commit is contained in:
neoarz
2025-09-29 08:14:33 -04:00
parent b6c74828f1
commit a7cdeee470
3 changed files with 82 additions and 9 deletions

View File

@@ -37,7 +37,6 @@ class Help(commands.Cog, name="help"):
async def help(self, context: Context, category: str = None) -> None:
category_mapping = {
# Command Groups (using __init__.py structure)
"general": "general",
"fun": "fun",
"idevice": "idevice",
@@ -46,7 +45,6 @@ class Help(commands.Cog, name="help"):
"sidestore": "sidestore",
"utilities": "utilities",
# Individual Owner Commands (exception)
"sync": "owner",
"logs": "owner",
"invite": "owner",