service_man/tg_bot/app.py

8 lines
95 B
Python
Raw Normal View History

2024-03-04 07:12:29 +03:00
from fastapi import FastAPI
def create_app() -> FastAPI:
app = FastAPI()
return app