# TODO: implement /help feature def cHelp(context, data=None) -> None: moduleList, commands = '', '' for module in Modules: summary = Modules[module]["summary"] endpoints = Modules[module]["endpoints"] moduleList += (f"\n\n{module}" + (f": {summary}" if summary else '')) for endpoint in endpoints: summary = endpoints[endpoint]["summary"] moduleList += (f"\n* /{', /'.join(endpoints[endpoint]['names'])}" + (f": {summary}" if summary else '')) for cmd in Endpoints.keys(): commands += f'* /{cmd}\n' SendMsg(context, {"Text": f"[ Available Modules ]{moduleList}\n\nFull Endpoints List:\n{commands}"}) RegisterModule(name="Help", group="Basic", endpoints={ "Help": CreateEndpoint(["help"], summary="Provides help for the bot. For now, it just lists the commands.", handler=cHelp), })