1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-12-22 21:13:18 +00:00

Update p.js

This commit is contained in:
Matte 2019-08-02 20:22:07 +03:00 committed by GitHub
parent fd1d99fbfb
commit f23082f035
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
const YouTube = require("simple-youtube-api"); const YouTube = require("simple-youtube-api");
const youtube = new YouTube("AIzaSyBPFfx6Kq2Nvn9lpB_M2T2Y6V2N-8K9Uvo"); const youtube = new YouTube(process.env.API_KEY);
module.exports = { module.exports = {
name: 'p', name: 'p',
@ -61,4 +61,4 @@ module.exports = {
return client.handleVideo(video, message, voiceChannel); return client.handleVideo(video, message, voiceChannel);
} }
} }
}; };