mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-09-27 05:35:57 +08:00
15 lines
214 B
Go
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)
|
|
}
|