Omkar008 commited on
Commit
22eb9af
1 Parent(s): 432bbc3

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +5 -0
main.py CHANGED
@@ -15,4 +15,9 @@ app.add_middleware(
15
 
16
  app = FastAPI()
17
 
 
 
 
 
 
18
  app.include_router(receipt_radar_callback_router.router)
 
15
 
16
  app = FastAPI()
17
 
18
+ @app.get("/test")
19
+ async def test():
20
+ print("URL endpoint hit !!")
21
+ return {"response":"URL HIT!!"}
22
+
23
  app.include_router(receipt_radar_callback_router.router)