You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/tests/Recyclarr.Cli.TestLibrary/TrashRepoFileMapper.cs

12 lines
358 B

namespace Recyclarr.Cli.TestLibrary;
public class TrashRepoFileMapper : RemoteRepoFileMapper
{
private const string RepoUrlPrefix = "https://raw.githubusercontent.com/TRaSH-Guides/Guides/refs/heads/master";
public async Task DownloadFiles(params string[] repoFilePaths)
{
await base.DownloadFiles(RepoUrlPrefix, repoFilePaths);
}
}