mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-08 07:50:02 +00:00
9062dbf883
in this way coverage can be computed correctly.
16 lines
170 B
Go
16 lines
170 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/aler9/rtsp-simple-server/internal/core"
|
|
)
|
|
|
|
func main() {
|
|
s, ok := core.New(os.Args[1:])
|
|
if !ok {
|
|
os.Exit(1)
|
|
}
|
|
s.Wait()
|
|
}
|