mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
11 lines
250 B
C#
11 lines
250 B
C#
namespace Octokit.Internal
|
|
{
|
|
class AnonymousAuthenticator : IAuthenticationHandler
|
|
{
|
|
public void Authenticate(IRequest request, Credentials credentials)
|
|
{
|
|
// Do nothing. Retain your anonymity.
|
|
}
|
|
}
|
|
}
|