Files
monibuca/example/default/main.go
langhuihui b2bce81e55 add code
2024-03-19 10:04:56 +08:00

15 lines
214 B
Go

package main
import (
"context"
"time"
"m7s.live/m7s/v5"
_ "m7s.live/m7s/v5/plugin/demo"
)
func main() {
ctx, _ := context.WithDeadline(context.Background(), time.Now().Add(time.Second*10))
m7s.Run(ctx)
}