summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
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)
}