mirror of
https://github.com/FalloutCollaborationProject/FCP-Mod-Updater.git
synced 2026-07-27 17:04:05 -07:00
12 lines
370 B
C#
12 lines
370 B
C#
using FCPModUpdater.Models;
|
|
|
|
namespace FCPModUpdater.Services;
|
|
|
|
public interface IGitHubApiService
|
|
{
|
|
Task<IReadOnlyList<RemoteRepo>> GetOrganizationReposAsync(CancellationToken ct = default);
|
|
Task<RemoteRepo?> GetRepoByNameAsync(string repoName, CancellationToken ct = default);
|
|
int? RemainingRateLimit { get; }
|
|
DateTimeOffset? RateLimitReset { get; }
|
|
}
|