| from ubot import * | |
| __MODULE__ = "Search" | |
| __HELP__ = """Help For Search | |
| • Command: <code>{0}pic</code> [query] | |
| • Explanation: For images with a limit of 5. | |
| • Command: <code>{0}gif</code> [query] | |
| • Explanation: For gif. | |
| """ | |
| async def _(client, message): | |
| await pic_bing_cmd(client, message) | |
| async def _(client, message): | |
| await gif_cmd(client, message) | |