Files
monibuca/plugin/transcode/pkg/pull.go
2024-10-22 08:25:55 +08:00

21 lines
247 B
Go

package transcode
import (
"m7s.live/pro"
"m7s.live/pro/pkg/task"
)
func NewPuller() m7s.IPuller {
return &Puller{}
}
type Puller struct {
task.Task
PullJob m7s.PullJob
}
func (p *Puller) GetPullJob() *m7s.PullJob {
return &p.PullJob
}