qywok commited on
Commit
a2177dd
·
verified ·
1 Parent(s): d92ee7d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -26,3 +26,7 @@ app.include_router(
26
  @app.get("/", tags = ['Main'])
27
  def root():
28
  return RedirectResponse(url="/docs")
 
 
 
 
 
26
  @app.get("/", tags = ['Main'])
27
  def root():
28
  return RedirectResponse(url="/docs")
29
+
30
+ @app.on_event("startup")
31
+ async def startup_event():
32
+ print("✅ App Started")