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.Tests/Reusable/TrashRepoFileMapper.cs

13 lines
369 B

namespace Recyclarr.Cli.Tests.Reusable;
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);
}
}