11 lines
317 B
C#
11 lines
317 B
C#
#nullable enable
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Torch.API.WebAPI.Plugins;
|
|
|
|
public interface IPackageResolver
|
|
{
|
|
Task<IEnumerable<Package>> ResolvePackagesAsync(IReadOnlyDictionary<string, string> packages);
|
|
Task<IPackageReader> GetPackageAsync(Package package);
|
|
} |