Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created July 20, 2017 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinyoo/fc2ae1a96dd0f300b12ea2c53ed0aa0e to your computer and use it in GitHub Desktop.
Save justinyoo/fc2ae1a96dd0f300b12ea2c53ed0aa0e to your computer and use it in GitHub Desktop.
Testing Serverless Applications - Part 2
// Returns OK (200) with empty result
public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, ILogger log)
{
var models = new List<object>();
return req.CreateResponse(HttpStatusCode.OK, models);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment