This commit is contained in:
2025-11-16 16:58:28 +01:00
parent cdc5c32429
commit e31ccbbb19
4 changed files with 58 additions and 0 deletions

7
main.py Normal file
View File

@@ -0,0 +1,7 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def read_root():
return {"message": "MultiChatOverlay API"}