From 5fd81183f54662fdf08549c0d635e80166c62fe9 Mon Sep 17 00:00:00 2001 From: Physick <96335032+DegustatorPonos@users.noreply.github.com> Date: Sat, 6 Dec 2025 12:05:43 +0500 Subject: initial endpoints --- static/index.html | 9 +++++++++ static/index.js | 5 +++++ 2 files changed, 14 insertions(+) create mode 100644 static/index.html create mode 100644 static/index.js (limited to 'static') diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..8f1caf6 --- /dev/null +++ b/static/index.html @@ -0,0 +1,9 @@ + + + + + +

xdx

+ + + diff --git a/static/index.js b/static/index.js new file mode 100644 index 0000000..9f5070b --- /dev/null +++ b/static/index.js @@ -0,0 +1,5 @@ +function GetSongs() { + fetch("/api/getSongs").then(r => r.json().then(body => { + console.log(body); + })); +} -- cgit v1.3