Files
octokit.net/Octokit/Authentication/IAuthenticationHandler.cs
2013-10-08 15:14:06 -07:00

7 lines
152 B
C#

namespace Octokit.Internal
{
interface IAuthenticationHandler
{
void Authenticate(IRequest request, Credentials credentials);
}
}