Files
e1lama-simple/NaiveHttpServer/HttpMethods.cs
2023-07-27 01:47:59 +04:00

11 lines
250 B
C#

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";
}
}