slash gotcha

This commit is contained in:
Tommy Parnell
2018-11-20 00:18:58 -05:00
parent 61201f950f
commit f5759c34ed

View File

@@ -18,7 +18,7 @@ namespace azure_functions_talk
[FunctionName("DozenPlz")]
public static async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = "/dozen")] HttpRequest req,
[HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = "dozen")] HttpRequest req,
ILogger log)
{
var baseUrl = Environment.GetEnvironmentVariable("baseUrl");