Files
mcp-server/spark_executor/server.py
T
2026-06-24 11:19:17 +08:00

12 lines
254 B
Python

# 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"}