mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
12 lines
282 B
C#
12 lines
282 B
C#
namespace Octokit
|
|
{
|
|
public static class CredentialsExtensions
|
|
{
|
|
public static string GetToken(this Credentials credentials)
|
|
{
|
|
Ensure.ArgumentNotNull(credentials, nameof(credentials));
|
|
|
|
return credentials.Password;
|
|
}
|
|
}
|
|
} |