mirror of
https://github.com/cuteLittleDevil/m7s-jt1078.git
synced 2026-04-23 00:27:11 +08:00
15 lines
254 B
Go
15 lines
254 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
_ "github.com/cuteLittleDevil/m7s-jt1078/v5"
|
|
"m7s.live/v5"
|
|
_ "m7s.live/v5/plugin/flv"
|
|
_ "m7s.live/v5/plugin/mp4"
|
|
_ "m7s.live/v5/plugin/preview"
|
|
)
|
|
|
|
func main() {
|
|
_ = m7s.Run(context.Background(), "./config.yaml")
|
|
}
|