bilal01's picture
Update main.py
3115534
raw
history blame contribute delete
115 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello world"}