Parent Directory
|
Revision Log
Added base commands
1 | const MessageEmbed = require("../src/MessageEmbed"); |
2 | const axios = require('axios').default; |
3 | |
4 | module.exports = { |
5 | async handle(msg, cm) { |
6 | axios.get("https://api.thecatapi.com/v1/images/search") |
7 | .then(res => { |
8 | if (res && res.status === 200) { |
9 | msg.reply({ |
10 | content: res.data[0].url |
11 | }); |
12 | } |
13 | }) |
14 | .catch(err => { |
15 | msg.reply({ |
16 | embeds: [ |
17 | new MessageEmbed() |
18 | .setColor('#f14a60') |
19 | .setDescription('Too many requests at the same time, please try again after some time.') |
20 | ] |
21 | }); |
22 | }); |
23 | } |
24 | }; |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |