Testing Serverless Applications - Part 1
public abstract class FunctionBase : IFunction | |
{ | |
public IServiceLocator ServiceLocator { get; set; } | |
public virtual Task<HttpResponseMessage> InvokeAsync<TOptions>(HttpRequestMessage req, TOptions options = default(TOptions)) | |
{ | |
return null; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment