File size: 252 Bytes
9e80f82
 
 
 
 
 
1
2
3
4
5
6
# from fastapi import FastAPI, File, UploadFile
# app = FastAPI()

# @app.post("/resume")
# async def root(name:str, email:str, about:str, file:UploadFile = File(...)):
#     return {"name":name, "email":email, "about":about, "file_name":file.filename}