mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-05 06:02:50 +08:00
9 lines
277 B
C#
9 lines
277 B
C#
using Ocelot.Library.Infrastructure.UrlMatcher;
|
|
|
|
namespace Ocelot.Library.Infrastructure.UrlTemplateReplacer
|
|
{
|
|
public interface IDownstreamUrlTemplateVariableReplacer
|
|
{
|
|
string ReplaceTemplateVariable(string downstreamPathTemplate, UrlMatch urlMatch);
|
|
}
|
|
} |