Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -115,6 +115,8 @@ app.mount("/static", StaticFiles(directory=static_dir), name="static")
|
|
115 |
# Set up templates
|
116 |
templates = Jinja2Templates(directory="static")
|
117 |
|
|
|
|
|
118 |
# App1 route
|
119 |
@app.get("/iresearcher-v2", response_class=HTMLResponse)
|
120 |
async def iresearcher_v2(request: Request):
|
|
|
115 |
# Set up templates
|
116 |
templates = Jinja2Templates(directory="static")
|
117 |
|
118 |
+
app.mount("/iresearcher-v3", StaticFiles(directory="static/iresearcher", html=True), name="iresearcher")
|
119 |
+
|
120 |
# App1 route
|
121 |
@app.get("/iresearcher-v2", response_class=HTMLResponse)
|
122 |
async def iresearcher_v2(request: Request):
|