feat: initial development

This commit is contained in:
2023-07-27 01:47:59 +04:00
commit 85dc5981cd
30 changed files with 3075 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace NaiveHttpServer
{
public static class ErrorCodes
{
public const string Unknown = "UNKNOWN";
public const string NotFoundApi = "NOT_FOUND_API";
public const string NotFoundFile = "NOT_FOUND_FILE";
}
}