2022-09-17 19:19:45 +00:00
|
|
|
// main executable.
|
2019-12-28 21:07:03 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
2023-05-16 14:14:20 +00:00
|
|
|
"github.com/bluenviron/mediamtx/internal/core"
|
2019-12-28 21:07:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2021-07-24 13:55:42 +00:00
|
|
|
s, ok := core.New(os.Args[1:])
|
2020-12-08 11:21:06 +00:00
|
|
|
if !ok {
|
|
|
|
os.Exit(1)
|
2019-12-28 21:07:03 +00:00
|
|
|
}
|
2021-07-24 13:55:42 +00:00
|
|
|
s.Wait()
|
2019-12-28 21:07:03 +00:00
|
|
|
}
|