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

10 lines
246 B
C#

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