webui_fastapi / main.py
abhijitkumarjha88192's picture
initial change for test
8bf294e
raw
history blame
No virus
129 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World! this is webui fastapi"}