tg_bot_zammad/main.py

8 lines
103 B
Python

import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}