summaryrefslogtreecommitdiff
path: root/static/index.js
blob: 9f5070b4b62186c8a9ad9c06bb046d905e1f6691 (plain)
1
2
3
4
5
function GetSongs() {
    fetch("/api/getSongs").then(r => r.json().then(body => {
        console.log(body);
    }));
}