type Finder interface {
Find(url, system, arch string) (*Release, error)
}
Finder is the interface that is used to find a specific release from the
GitHub API using a URL, runtime.GOOS, and runtime.GOSARCH. It will return
a Release struct or an error.