From ea74cb899c24c12a1e2181b311dad0cc9e03b450 Mon Sep 17 00:00:00 2001 From: GHXX Date: Sun, 14 Jan 2024 21:50:49 +0100 Subject: [PATCH] move type to different folder --- SimpleHttpServer/HttpEndpointAttribute.cs | 1 + SimpleHttpServer/{ => Types}/HttpRequestType.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) rename SimpleHttpServer/{ => Types}/HttpRequestType.cs (77%) 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,