ResumeAPI / app.py
Vaibhav84's picture
Rename main.py to app.py
a7f9ed8 verified
raw
history blame
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"greeting":"Hello world"}