Files
octokit.net/Octokit/Http/HttpVerb.cs
2015-11-03 09:34:19 -08:00

15 lines
269 B
C#

using System.Net.Http;
namespace Octokit.Internal
{
internal static class HttpVerb
{
static readonly HttpMethod patch = new HttpMethod("PATCH");
internal static HttpMethod Patch
{
get { return patch; }
}
}
}