Quadratic / app.py
guohanghui's picture
Rename 挨批评、 to app.py
58cb3df verified
Raw
History Blame Contribute Delete
227 Bytes
from fastapi import FastAPI
import os
app = FastAPI()
@app.get("/")
async def root():
return {
"status": "ok",
"service": "Quadratic",
"transport": os.environ.get("MCP_TRANSPORT", "stdio"),
}