Files
Torch/Torch.API/WebAPI/IUpdateQuery.cs
2022-10-15 15:33:57 +07:00

9 lines
212 B
C#

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