Created
July 20, 2017 13:09
-
-
Save justinyoo/ee88f64301ef7c7eb4b4921a78d9c07c to your computer and use it in GitHub Desktop.
Testing Serverless Applications - Part 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Returns an error response | |
public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, ILogger log) | |
{ | |
return req.CreateResponse(HttpStatusCode.BadRequest); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment