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