File size: 229 Bytes
973d2bc
 
e37298f
973d2bc
e37298f
973d2bc
 
 
e37298f
973d2bc
 
 
e37298f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from fastapi import FastAPI, Request
import uvicorn

app = FastAPI()

@app.get("/")
def main():
    return {"code": 200,"msg":"Success"}

if __name__ == '__main__':
    uvicorn.run(app='app:app', host="0.0.0.0", port=7860)