8 lines
95 B
Python
8 lines
95 B
Python
|
from fastapi import FastAPI
|
||
|
|
||
|
|
||
|
def create_app() -> FastAPI:
|
||
|
app = FastAPI()
|
||
|
|
||
|
return app
|