Open evalphobia opened 4 years ago
This PR adds a new fetcher. The fetcher can contain multiple other fetchers and execute and retrieve results from them.
// example usage overseer.Run(overseer.Config{ Program: prog, Fetcher: &fetcher.Multiple{ List: []fetcher.Interface{ &fetcher.File{ Path: "/path/to/my_app", }, &fetcher.Github{ User: "jpillora", Repo: "overseer", }, // add other fetchers... }, })
This PR adds a new fetcher. The fetcher can contain multiple other fetchers and execute and retrieve results from them.