Skip to content

Instantly share code, notes, and snippets.

@JarroVGIT
Created May 16, 2020 12: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 JarroVGIT/c94f29f36dd278516446a9d06c3d8f75 to your computer and use it in GitHub Desktop.
Save JarroVGIT/c94f29f36dd278516446a9d06c3d8f75 to your computer and use it in GitHub Desktop.
BackendFunction __init__.py
import logging
import azure.functions as func
def main(req: func.HttpRequest) -> func.HttpResponse:
return func.HttpResponse(
"\nThis message is from our Secret API in the Backend Function.",
status_code=200
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment