diff --git a/SimpleHttpServer/HttpEndpointAttribute.cs b/SimpleHttpServer/HttpEndpointAttribute.cs index 7396a87..8e58e17 100644 --- a/SimpleHttpServer/HttpEndpointAttribute.cs +++ b/SimpleHttpServer/HttpEndpointAttribute.cs @@ -1,4 +1,5 @@ using SimpleHttpServer.Internal; +using SimpleHttpServer.Types; namespace SimpleHttpServer; diff --git a/SimpleHttpServer/HttpRequestType.cs b/SimpleHttpServer/Types/HttpRequestType.cs similarity index 77% rename from SimpleHttpServer/HttpRequestType.cs rename to SimpleHttpServer/Types/HttpRequestType.cs index d6a7972..31554b3 100644 --- a/SimpleHttpServer/HttpRequestType.cs +++ b/SimpleHttpServer/Types/HttpRequestType.cs @@ -1,4 +1,4 @@ -namespace SimpleHttpServer; +namespace SimpleHttpServer.Types; public enum HttpRequestType { GET,