Fix API base_path support #205

This commit is contained in:
Alexey Khit
2023-01-25 16:40:06 +03:00
parent 3acea1ed5a
commit 0e28b0c797
+6 -9
View File
@@ -26,28 +26,25 @@ import (
func main() { func main() {
app.Init() // init config and logs app.Init() // init config and logs
streams.Init() // load streams list
api.Init() // init HTTP API server api.Init() // init HTTP API server
streams.Init() // load streams list
echo.Init()
rtsp.Init() // add support RTSP client and RTSP server rtsp.Init() // add support RTSP client and RTSP server
rtmp.Init() // add support RTMP client rtmp.Init() // add support RTMP client
exec.Init() // add support exec scheme (depends on RTSP server) exec.Init() // add support exec scheme (depends on RTSP server)
ffmpeg.Init() // add support ffmpeg scheme (depends on exec scheme) ffmpeg.Init() // add support ffmpeg scheme (depends on exec scheme)
hass.Init() // add support hass scheme hass.Init() // add support hass scheme
echo.Init()
ivideon.Init()
srtp.Init()
homekit.Init()
webrtc.Init() webrtc.Init()
mp4.Init() mp4.Init()
mjpeg.Init() mjpeg.Init()
http.Init() http.Init()
srtp.Init()
homekit.Init()
ivideon.Init()
ngrok.Init() ngrok.Init()
debug.Init() debug.Init()