from ubot import * __MODULE__ = "Info" __HELP__ = """Help For Info • Command: {0}info [user_id/username/reply message] • Explanation: To view user information. • Command: {0}cinfo [user_id/username/reply message] • Explanation: To view chat information. """ @PY.UBOT("whois|info", sudo=True) async def _(client, message): await info_cmd(client, message) @PY.UBOT("cwhois|cinfo", sudo=True) async def _(client, message): await cinfo_cmd(client, message)