mirror of
https://github.com/arc53/DocsGPT.git
synced 2026-05-07 06:30:03 +00:00
6 lines
118 B
Python
6 lines
118 B
Python
from a2wsgi import WSGIMiddleware
|
|
|
|
from application.app import app as flask_app
|
|
|
|
asgi_app = WSGIMiddleware(flask_app)
|