Implemented HLS player (client-side), added scaffold for server-side HLS streamer

This commit is contained in:
the-m-monk
2025-12-30 00:29:05 +10:00
parent 32da27c404
commit 60edd082af
7 changed files with 74 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
package api
func RegisterHlsEndpoints() {
}

View File

@@ -14,6 +14,7 @@ func Start() {
api.RegisterMiscEndpoints()
api.RegisterAuthEndpoints()
api.RegisterLibraryEndpoints()
api.RegisterHlsEndpoints()
RegisterWebui()