owncast support draft

This commit is contained in:
Luxferre
2024-09-14 23:42:47 +03:00
parent 4b11209e6d
commit 492cd515c6
5 changed files with 26 additions and 18 deletions
+4
View File
@@ -164,6 +164,10 @@ func main() {
go youtube_run(config) /* start the YouTube backend */
}
if _, ok := config["oc_backend_enabled"]; ok && config["oc_backend_enabled"].(bool) == true {
go owncast_run(config) /* start the Owncast backend */
}
/* start the GUI */
debug := false
if _, ok := config["debug"]; ok && config["debug"].(bool) == true {