mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
19 lines
528 B
C#
19 lines
528 B
C#
namespace Octokit.Reactive
|
|
{
|
|
public class ObservableActionsCacheClient : IObservableActionsCacheClient
|
|
{
|
|
readonly IActionsCacheClient _client;
|
|
|
|
/// <summary>
|
|
/// Instantiate a new GitHub Actions Cache API client.
|
|
/// </summary>
|
|
/// <param name="client">A GitHub client.</param>
|
|
public ObservableActionsCacheClient(IGitHubClient client)
|
|
{
|
|
Ensure.ArgumentNotNull(client, nameof(client));
|
|
|
|
_client = client.Actions.Cache;
|
|
}
|
|
}
|
|
}
|