mirror of
https://github.com/AlexxIT/go2rtc.git
synced 2025-09-27 12:42:18 +08:00
18 lines
279 B
Go
18 lines
279 B
Go
package main
|
|
|
|
import (
|
|
"github.com/AlexxIT/go2rtc/internal/app"
|
|
"github.com/AlexxIT/go2rtc/internal/rtsp"
|
|
"github.com/AlexxIT/go2rtc/internal/streams"
|
|
"github.com/AlexxIT/go2rtc/pkg/shell"
|
|
)
|
|
|
|
func main() {
|
|
app.Init()
|
|
streams.Init()
|
|
|
|
rtsp.Init()
|
|
|
|
shell.RunUntilSignal()
|
|
}
|