[FastAPI] 첫시작

김시환·2022년 11월 8일
0

FastAPI

목록 보기
1/3
from fastapi import FastAPI

app = FastAPI()


@app.get("/")
async def root():
    return {"message": "Hello World"}
uvicorn main:app --reload

profile
파이팅!

0개의 댓글