Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Last active July 19, 2017 13:10
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/c21d4dc9b46163aacc093de1c3a00f81 to your computer and use it in GitHub Desktop.
Save justinyoo/c21d4dc9b46163aacc093de1c3a00f81 to your computer and use it in GitHub Desktop.
Testing Serverless Applications - Part 1
public interface IFunction : IDisposable
{
IServiceLocator ServiceLocator { get; set; }
Task<HttpResponseMessage> InvokeAsync<TOptions>(HttpRequestMessage req, TOptions options = default(TOptions));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment