package ytdlp

type Client struct {
	binary string
}

func New() (*Client, error) {
	return &Client{binary: "yt-dlp"}, nil
}