testing / main.py
hoangnt1209's picture
Add main
365e8db
raw
history blame contribute delete
No virus
110 Bytes
from fastapi import FastAPI
app =FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}