introduction of nuget packages as plugins support
This commit is contained in:
11
Torch.API/WebAPI/Plugins/IPackageItem.cs
Normal file
11
Torch.API/WebAPI/Plugins/IPackageItem.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
#nullable enable
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Torch.API.WebAPI.Plugins;
|
||||
|
||||
public interface IPackageItem
|
||||
{
|
||||
Task<Stream> OpenFileAsync();
|
||||
public string FileName { get; }
|
||||
}
|
Reference in New Issue
Block a user