We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6024914 commit 8ebc703Copy full SHA for 8ebc703
code/function/function_app.py
@@ -32,3 +32,7 @@ async def shutdown_event():
32
app=fastapi_app,
33
http_auth_level=func.AuthLevel.ANONYMOUS,
34
)
35
+
36
37
+async def main(req: func.HttpRequest, context: func.Context) -> func.HttpResponse:
38
+ return await app.handle_async(req, context)
0 commit comments