Add basic html player

This commit is contained in:
nxshock 2022-07-02 16:20:06 +05:00
parent c58742d186
commit 960485d260
4 changed files with 1307 additions and 2 deletions

View file

@ -38,6 +38,7 @@ func main() {
http.HandleFunc("/genres", handleGenres)
http.HandleFunc("/getm3u", handleGetM3u)
http.HandleFunc("/stream", handleStream)
http.HandleFunc("/player", handlePlayer)
err := http.ListenAndServe(config.ListenAddr, nil)
if err != nil {