chore: scrobbling
This commit is contained in:
parent
e9c16f8fbe
commit
ffa9ef637a
2 changed files with 54 additions and 1 deletions
|
@ -0,0 +1,14 @@
|
|||
import EleventyFetch from '@11ty/eleventy-fetch';
|
||||
import { artistCapitalization, buildChart } from './helpers/music.js'
|
||||
|
||||
export default async function () {
|
||||
const API_KEY_MUSIC = process.env.API_KEY_MUSIC;
|
||||
const url = `https://coryd.dev/api/music?key=${API_KEY_MUSIC}`;
|
||||
const res = EleventyFetch(url, {
|
||||
duration: '1h',
|
||||
type: 'json',
|
||||
}).catch();
|
||||
const resObj = await res;
|
||||
console.log(buildChart(resObj['data']))
|
||||
return buildChart(resObj['data'])
|
||||
}
|
Reference in a new issue