Created
February 25, 2019 01:30
-
-
Save olafloogman/75da7751aaed784b84aeef10dae9aa18 to your computer and use it in GitHub Desktop.
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
[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