0.0.2 • Published 2 years ago

divish-avance v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

🚀 divish-avance

example

const { Manager } = require("divish");
const Spotify = require("divish-avance");
 
const clientID = "example ID"; // clientID from your Spotify app
const clientSecret = "example secret"; // clientSecret from your Spotify app
 
const manager = new Manager({
  plugins: [
    // Initiate the plugin and pass the two required options.
    new Spotify({
      clientID,
      clientSecret
    })
  ]
});