mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-16 11:44:50 +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()
|
|
}
|