File size: 202 Bytes
26c4a8d
cc72e97
b7ffc14
cc72e97
3071a1f
cc72e97
 
26c4a8d
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import uvicorn
from fastapi import FastAPI

app = FastAPI()

@app.get("/")
def read_root():
    return {"Hello": "World!"}

if __name__ == '__main__':
    uvicorn.run('main:app', port=8000, reload=True)