Skip to content

Instantly share code, notes, and snippets.

@olafloogman
Created February 25, 2019 01:30
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 olafloogman/75da7751aaed784b84aeef10dae9aa18 to your computer and use it in GitHub Desktop.
Save olafloogman/75da7751aaed784b84aeef10dae9aa18 to your computer and use it in GitHub Desktop.
[FunctionName("LiquidTransformer")]
public static async Task<HttpResponseMessage> Run([HttpTrigger(AuthorizationLevel.Function, "post", Route = "liquidtransformer/{liquidtransformfilename}")] HttpRequestMessage req,
[Blob("liquid-transforms/{liquidtransformfilename}", FileAccess.Read)] Stream inputBlob,
TraceWriter log)
{
log.Info("C# HTTP trigger function processed a request.");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment