service_man/tg_bot/app.py

8 lines
95 B
Python

from fastapi import FastAPI
def create_app() -> FastAPI:
app = FastAPI()
return app