Created
May 16, 2026 11:26
-
-
Save ayashiiiyo/5a8cdbfd7bab4945a08398f072f56be5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let handler = async (m, { args, command }) => { | |
| try { | |
| if (!args[0]) return m.reply(`*Example :* .${command} https://sfl.gl/xxxxx`) | |
| m.reply(global.wait) | |
| m.reply( | |
| ( | |
| await ( | |
| await fetch(`https://anabot.my.id/api/tools/izenLOL?url=${encodeURIComponent(args[0])}&apikey=freeApikey`) | |
| ).json() | |
| ).data.result.result | |
| ) | |
| } catch (e) { | |
| m.reply(e.message) | |
| } | |
| } | |
| handler.help = ['izen'] | |
| handler.command = ['izen'] | |
| handler.tags = ['skiplink'] | |
| export default handler |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment