mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
16 lines
397 B
C#
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
|
|
{
|
|
}
|
|
}
|