File size: 172 Bytes
b8f7497
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from fastapi import FastAPI
from fastapi.middleware.wsgi import WSGIMiddleware

from app import app as flask_app

app = FastAPI()
app.mount("/", WSGIMiddleware(flask_app))