Files

11 lines
184 B
Python
Raw Permalink Normal View History

2026-09-21 17:11:35 +08:00
from fastapi import FastAPI
app=FastAPI()
@app.get('/')
def health():
return 'good'
if __name__ == '__main__':
import uvicorn
uvicorn.run(app,host='0.0.0.0',port=8000)