chore: debug

This commit is contained in:
Cory Dransfeldt 2024-04-03 19:57:00 -07:00
parent 8a797c6b0f
commit 6a7cdf4460
No known key found for this signature in database

View file

@ -1,6 +1,13 @@
import window from './json/scrobbles-window.json'
import fs from 'fs'
export default async function () {
const window = fs.readFileSync('./json/scrobbles-window.json', (error, data) => {
if (error) {
console.log(error);
return;
}
return JSON.parse(data)
})
console.log(window)
return window
}