mirror of
https://git.gay/lucida/lucida
synced 2025-12-11 20:15:14 +01:00
10 lines
298 B
JavaScript
10 lines
298 B
JavaScript
import Spotify from './../build/streamers/spotify/main.js'
|
|
|
|
const client = new Spotify({})
|
|
await client.login(process.env.SPOTIFY_USERNAME, process.env.SPOTIFY_PASSWORD)
|
|
|
|
const storedCreds = client.getStoredCredentials()
|
|
console.log('[spotify] New config:', storedCreds)
|
|
|
|
await client.disconnect()
|