Files
LiquidCode.Tester/src/LiquidCode.Tester.Gateway/Services/IPackageDownloadService.cs
2025-10-24 23:29:56 +04:00

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);
}