Pujan-Dev commited on
Commit
f24e569
·
1 Parent(s): f0d2dad
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -29,6 +29,11 @@ async def read_items():
29
  return items
30
 
31
 
 
 
 
 
 
32
  @app.get("/items/{item_id}")
33
  async def read_item(item_id: str):
34
  try:
 
29
  return items
30
 
31
 
32
+ @app.get("/")
33
+ def index():
34
+ return {"hello World"}
35
+
36
+
37
  @app.get("/items/{item_id}")
38
  async def read_item(item_id: str):
39
  try: