summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorPhysick <96335032+DegustatorPonos@users.noreply.github.com>2025-12-13 12:32:15 +0500
committerPhysick <96335032+DegustatorPonos@users.noreply.github.com>2025-12-13 12:32:15 +0500
commitae11ed555cb350ea4c11fc1625f4a56229969ddd (patch)
tree1d02b84131b713a2eed9a332ffac51997b0ec285 /main.go
parent4b8ef84059e772ef7636c451356680ec5b0983c4 (diff)
Tracks meta
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.go b/main.go
index 72e796f..9ab2ae9 100644
--- a/main.go
+++ b/main.go
@@ -11,9 +11,10 @@ import (
func main() {
settings.ReadSettings()
- fmt.Println(settings.Current)
endpoints.RegisterEndpoints()
http.Handle("/", http.FileServer(http.FS(os.DirFS("./static"))))
+ var _, _ = endpoints.GetAvaliableSongs()
+ fmt.Println(settings.Current)
http.ListenAndServe(":6969", nil)
}