12 lines
254 B
Python
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"} |