add generic ASGI entry point, for uvicorn etc.
This commit is contained in:
parent
f1dcec111c
commit
532277dc27
|
@ -33,3 +33,10 @@ def make_wsgi_app():
|
||||||
Make and return the WSGI app (generic entry point).
|
Make and return the WSGI app (generic entry point).
|
||||||
"""
|
"""
|
||||||
return base.make_wsgi_app(main)
|
return base.make_wsgi_app(main)
|
||||||
|
|
||||||
|
|
||||||
|
def make_asgi_app():
|
||||||
|
"""
|
||||||
|
Make and return the ASGI app.
|
||||||
|
"""
|
||||||
|
return base.make_asgi_app(main)
|
||||||
|
|
Loading…
Reference in a new issue