10 lines
246 B
C#
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";
|
|
}
|
|
}
|