| 59 | } |
| 60 | |
| 61 | type YoutubeDl struct { |
| 62 | path string |
| 63 | timeout time.Duration |
| 64 | updateLock sync.Mutex // Don't call youtube-dl while self updating |
| 65 | } |
| 66 | |
| 67 | func New(ctx context.Context, cfg Config) (*YoutubeDl, error) { |
| 68 | var ( |
nothing calls this directly
no outgoing calls
no test coverage detected