ytdl-web/pkg/ytdl/error.go

15 lines
179 B
Go
Raw Normal View History

2024-09-18 20:46:18 -04:00
package ytdl
type Error struct {
stderr string
child error
}
func (e *Error) Error() string {
return e.child.Error()
}
func (e *Error) Stderr() string {
return e.stderr
}