mediamtx/main.go

17 lines
190 B
Go
Raw Normal View History

2022-09-17 19:19:45 +00:00
// main executable.
2019-12-28 21:07:03 +00:00
package main
import (
"os"
"github.com/aler9/rtsp-simple-server/internal/core"
2019-12-28 21:07:03 +00:00
)
func main() {
s, ok := core.New(os.Args[1:])
if !ok {
os.Exit(1)
2019-12-28 21:07:03 +00:00
}
s.Wait()
2019-12-28 21:07:03 +00:00
}