Files
Torch/Torch.API/WebAPI/Update/IUpdateQuery.cs
2022-12-02 15:44:38 +07:00

9 lines
219 B
C#

using System;
using System.Threading.Tasks;
namespace Torch.API.WebAPI.Update;
public interface IUpdateQuery : IDisposable
{
Task<UpdateRelease> GetLatestReleaseAsync(string repository, string branch = null);
}