diff --git a/cmd/dwelling-radio/main.go b/cmd/dwelling-radio/main.go index 6abe4a7..55bc9be 100644 --- a/cmd/dwelling-radio/main.go +++ b/cmd/dwelling-radio/main.go @@ -75,10 +75,10 @@ func main() { s = r.Sub("/api") s.Handler(http.MethodGet, "/playlist", djh.PlaylistNext) - s.Handler(http.MethodGet, "/song", djh.Song) - s.Handler(http.MethodGet, "/songs", djh.Songs) s.Handler(http.MethodGet, "/status", djh.Status) - s.Handler(http.MethodGet, "/mostlistenedsong", djh.MostListenedSong) + // s.Handler(http.MethodGet, "/song", djh.Song) + // s.Handler(http.MethodGet, "/songs", djh.Songs) + // s.Handler(http.MethodGet, "/mostlistenedsong", djh.MostListenedSong) srv := ihttp.NewHttpServer(r)