mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-02 10:55:53 +00:00
Rename to Octokit to be consistent with other API libs
GitHub is naming all of the libraries Octokit for their respective platforms
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Octokit.Http
|
||||
{
|
||||
public class InMemoryCredentialStore : ICredentialStore
|
||||
{
|
||||
readonly Credentials credentials;
|
||||
|
||||
public InMemoryCredentialStore(Credentials credentials)
|
||||
{
|
||||
Ensure.ArgumentNotNull(credentials, "credentials");
|
||||
|
||||
this.credentials = credentials;
|
||||
}
|
||||
|
||||
public Credentials GetCredentials()
|
||||
{
|
||||
return credentials;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user