mirror of
http://47.106.207.27:3000/Jeremy_liu/AI0814_jiaoan_public.git
synced 2026-09-27 06:14:14 +08:00
11 lines
190 B
Python
11 lines
190 B
Python
from fastapi import FastAPI
|
|
|
|
app=FastAPI()
|
|
|
|
@app.get('/')
|
|
def health():
|
|
return '8004成功'
|
|
|
|
if __name__ == '__main__':
|
|
import uvicorn
|
|
uvicorn.run(app,host='0.0.0.0',port=8004) |