mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-10-23 00:29:27 +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);
|
|
}
|
|
} |