9 lines
219 B
C#
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);
|
|
} |