Spaces:
Running
Running
Update app.py
Browse files
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")
|