This repository has been archived on 2026-01-13. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Lunaris/reAuthenticate.js
2023-06-28 03:04:01 +02:00

18 lines
294 B
JavaScript

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;