amanmibra's picture
Init api server
661fd4d
raw
history blame
117 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return { "message": "Hello World" }