Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Vaibhav84
/
ResumeAPI
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a7f9ed8
ResumeAPI
/
app.py
Vaibhav84
Rename main.py to app.py
a7f9ed8
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
110 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
async
def
root
():
return
{
"greeting"
:
"Hello world"
}