2016-07-08 19:33:22 +01:00

10 lines
288 B
C#

using Ocelot.Library.Infrastructure.Responses;
namespace Ocelot.Library.Infrastructure.Router.UpstreamRouter
{
public interface IUpstreamRouter
{
Response AddRoute(string downstreamUrl, string upstreamUrl);
Response<Route> GetRoute(string downstreamUrl);
}
}