feat: initial development
This commit is contained in:
10
NaiveHttpServer/HttpMethods.cs
Normal file
10
NaiveHttpServer/HttpMethods.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace NaiveHttpServer
|
||||
{
|
||||
public static class HttpMethods
|
||||
{
|
||||
public const string Get = "GET";
|
||||
public const string Post = "POST";
|
||||
public const string Put = "PUT";
|
||||
public const string Delete = "DELETE";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user