mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
21 lines
247 B
Go
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
|
|
|
|
}
|