1
0
Fork 0

thispersondoesnotexist

akairo
Loïc Bersier 5 years ago
parent 33eed9f0ad
commit d84192d7fe

1
.gitignore vendored

@ -14,3 +14,4 @@ videoReady.mp4
package-lock.json
img/frame001.png
img/spb.png
img/de.png

@ -0,0 +1,28 @@
const { Command } = require('discord-akairo');
const fs = require('fs');
const fetch = require('node-fetch');
class dosentexistCommand extends Command {
constructor() {
super('dosentexist', {
aliases: ['dosentexist', 'thispersondoesnotexist', 'de'],
category: 'fun',
description: {
content: 'Send images from thispersondoesnotexist.com',
usage: '',
examples: ['']
}
});
}
async exec(message) {
fetch('https://thispersondoesnotexist.com/image')
.then(res => {
const dest = fs.createWriteStream('./img/de.png');
res.body.pipe(dest);
dest.on('finish', () => {
return message.channel.send({files: ['./img/de.png']});
});
}); }
}
module.exports = dosentexistCommand;
Loading…
Cancel
Save