mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-03 11:05:56 +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,14 @@
|
||||
using System.Net.Http;
|
||||
|
||||
namespace Octokit.Http
|
||||
{
|
||||
public static class HttpVerb
|
||||
{
|
||||
static readonly HttpMethod patch = new HttpMethod("PATCH");
|
||||
|
||||
public static HttpMethod Patch
|
||||
{
|
||||
get { return patch; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user