Collabnix / main.py
Ajeet Singh Raina
Added
4893c5f
raw
history blame contribute delete
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}