diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) } |
