YashVardhan-coder
Initial clean deploy
b8c035c
Raw
History Blame Contribute Delete
169 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet():
return "Hello Yash"
@app.get("/products")
def get_all_prodects():
return "all products"