mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
13 lines
272 B
C#
13 lines
272 B
C#
using System.Threading.Tasks;
|
|
using Octokit.Internal;
|
|
|
|
namespace Octokit.Caching
|
|
{
|
|
public interface IResponseCache
|
|
{
|
|
Task<CachedResponse.V1> GetAsync(IRequest request);
|
|
|
|
Task SetAsync(IRequest request, CachedResponse.V1 cachedResponse);
|
|
}
|
|
}
|