Rename ReAuthenticate.js to reAuthenticate.js

This commit is contained in:
2023-06-26 19:25:58 +02:00
committed by GitHub
parent 1312bfd6e0
commit 420f609cf7

18
reAuthenticate.js Normal file
View File

@@ -0,0 +1,18 @@
const play = require('play-dl');
async function ReAuth() {
play.getFreeClientID().then((clientID) => {
play.setToken({
soundcloud : {
client_id : clientID
}
})
console.log('Soudncloud Client ID: ' + clientID);
})
play.authorization();
}
module.exports.ReAuth = ReAuth;