This commit is contained in:
tao.chen
2026-06-24 11:19:17 +08:00
commit b56d7c80dd
9 changed files with 1075 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# coding=utf-8
"""
@Time :2026/6/24
@Author :tao.chen
"""
from fastapi import FastAPI
app = FastAPI(title="Spark Executor", version="0.0.1", description="Spark Executor MCP Server")
@app.get("/health")
def health_check():
return {"status": "ok"}