Created
October 2, 2018 11:39
-
-
Save ThomasPe/eeb435ba30adc6e0a6d0cbde3ae70e86 to your computer and use it in GitHub Desktop.
Blank JavaScript Azure Function
This file contains hidden or 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
module.exports = async function (context, req) { | |
context.log('JavaScript HTTP trigger function processed a request.'); | |
context.res = { | |
status: 200, | |
body: "Result message" | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment