Files
MultiChatOverlay/main.py
2025-11-16 16:58:28 +01:00

7 lines
129 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def read_root():
return {"message": "MultiChatOverlay API"}