12 lines
375 B
C#
12 lines
375 B
C#
namespace LiquidCode.Tester.Gateway.Services;
|
|
|
|
public interface IPackageDownloadService
|
|
{
|
|
/// <summary>
|
|
/// Downloads a package from the specified URL
|
|
/// </summary>
|
|
/// <param name="packageUrl">URL to download the package from</param>
|
|
/// <returns>Path to the downloaded package file</returns>
|
|
Task<string> DownloadPackageAsync(string packageUrl);
|
|
}
|