added some router thing and removed loads of crap

This commit is contained in:
Tom Gardham-Pallister
2016-07-02 16:09:54 +01:00
parent 948776115c
commit 3777e8c0c8
28 changed files with 425 additions and 590 deletions

View File

@ -0,0 +1,12 @@
using Ocelot.ApiGateway.Infrastructure.Responses;
namespace Ocelot.ApiGateway.Infrastructure.Router
{
public class RouteKeyAlreadyExists : Error
{
public RouteKeyAlreadyExists(string message)
: base(message)
{
}
}
}