add generic ASGI entry point, for uvicorn etc.

This commit is contained in:
Lance Edgar 2024-12-18 15:10:14 -06:00
parent f1dcec111c
commit 532277dc27

View file

@ -33,3 +33,10 @@ def make_wsgi_app():
Make and return the WSGI app (generic entry point).
"""
return base.make_wsgi_app(main)
def make_asgi_app():
"""
Make and return the ASGI app.
"""
return base.make_asgi_app(main)