mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-05 06:02:50 +08:00
10 lines
329 B
C#
10 lines
329 B
C#
using Ocelot.Library.Infrastructure.DownstreamRouteFinder;
|
|
using Ocelot.Library.Infrastructure.Responses;
|
|
|
|
namespace Ocelot.Library.Infrastructure.UrlTemplateReplacer
|
|
{
|
|
public interface IDownstreamUrlTemplateVariableReplacer
|
|
{
|
|
Response<string> ReplaceTemplateVariables(DownstreamRoute downstreamRoute);
|
|
}
|
|
} |