Skip to content

Instantly share code, notes, and snippets.

@ThomasPe
Created October 2, 2018 11:39
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 ThomasPe/eeb435ba30adc6e0a6d0cbde3ae70e86 to your computer and use it in GitHub Desktop.
Save ThomasPe/eeb435ba30adc6e0a6d0cbde3ae70e86 to your computer and use it in GitHub Desktop.
Blank JavaScript Azure Function
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