RajatMalviya commited on
Commit
d41934b
·
verified ·
1 Parent(s): f673b98

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -45,6 +45,10 @@ app.add_middleware(
45
  allow_headers=["*"],
46
  )
47
 
 
 
 
 
48
  # Health check endpoint
49
  @app.get("/health")
50
  async def health_check():
 
45
  allow_headers=["*"],
46
  )
47
 
48
+ @app.get("/")
49
+ def myfunc():
50
+ return {"status":"running"}
51
+
52
  # Health check endpoint
53
  @app.get("/health")
54
  async def health_check():