namespace LiquidCode.Tester.Gateway.Services;
public interface IPackageDownloadService
{
///
/// Downloads a package from the specified URL
///
/// URL to download the package from
/// Path to the downloaded package file
Task DownloadPackageAsync(string packageUrl);
}