12 lines
283 B
C#
12 lines
283 B
C#
using System.Threading.Tasks;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.GitHub
|
|
{
|
|
public interface IGitHubApiClient
|
|
{
|
|
Task<Either<BaseError, string>> GetLatestReleaseNotes();
|
|
Task<Either<BaseError, string>> GetReleaseNotes(string tag);
|
|
}
|
|
}
|