mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-04 12:02:52 +08:00
10 lines
288 B
C#
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);
|
|
}
|
|
} |