introduction of nuget packages as plugins support
This commit is contained in:
11
Torch.API/WebAPI/Plugins/IPackageResolver.cs
Normal file
11
Torch.API/WebAPI/Plugins/IPackageResolver.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
#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);
|
||||
}
|
Reference in New Issue
Block a user