Files
octokit.net/Octokit/Clients/IActionsCacheClient.cs
2022-11-23 09:35:58 -06:00

16 lines
397 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
namespace Octokit
{
/// <summary>
/// A client for GitHub's Actions Cache API.
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/actions/cache/">Actions Cache API documentation</a> for more information.
/// </remarks>
public interface IActionsCacheClient
{
}
}