Last active
December 18, 2023 15:20
-
-
Save S-U-P-E-R-I-O-R/ec91955fd747264452754a4f73fae6ce 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
| const { System, isPrivate} = require("../lib"); | |
| System({ | |
| pattern: "SUPERIOR", | |
| fromMe: isPrivate, | |
| desc: "To get Demon Slayer video", | |
| type: "anime" | |
| }, | |
| async (message, match) => { | |
| const api = await SUPERIOR("demonslayer"); | |
| const { result } = await getJson(api); | |
| const ds = result.DemonSlayer; | |
| await message.client.sendMessage(message.chat, { video: { url: ds }, caption: tiny("Demon Slayer 🔖") }); | |
| }); | |
| // MADE WITH SUPERIOR🏴 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment