naming and plan

This commit is contained in:
Tom Gardham-Pallister
2016-07-10 17:38:54 +01:00
parent 711a3d6a91
commit cea6a557e9
22 changed files with 182 additions and 159 deletions

View File

@ -14,6 +14,13 @@ namespace Ocelot.Library.Middleware
public async Task Invoke(HttpContext context)
{
//get the downstream host from the request context
//get the upstream host from the host repository
//if no upstream host fail this request
//get the downstream path from the request context
//get the downstream path template from the path template finder
//todo think about variables..
//add any query string..
await _next.Invoke(context);
}
}