add: router agent env

This commit is contained in:
GabinFay 2025-05-18 18:53:53 -07:00
parent c7a7db309c
commit cbb1607f12
48 changed files with 6764 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#!/usr/bin/env node
import { authorizeSpotify } from './utils.js';
console.log('Starting Spotify authentication flow...');
authorizeSpotify()
.then(() => {
console.log('Authentication completed successfully!');
process.exit(0);
})
.catch((error) => {
console.error('Authentication failed:', error);
process.exit(1);
});