diff options
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/api/webapp.py')
| -rw-r--r-- | packages/meshbay-hub/src/meshbay_hub/api/webapp.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/api/webapp.py b/packages/meshbay-hub/src/meshbay_hub/api/webapp.py index 62917f4..5ad7329 100644 --- a/packages/meshbay-hub/src/meshbay_hub/api/webapp.py +++ b/packages/meshbay-hub/src/meshbay_hub/api/webapp.py @@ -21,6 +21,16 @@ STATIC_DIR = Path(__file__).parent.parent / "static" router = APIRouter(tags=["webapp"]) +@router.get("/app", response_class=HTMLResponse) +async def app_root(): + return HTMLResponse(_HTML) + + +@router.get("/app/{path:path}", response_class=HTMLResponse) +async def app_catchall(path: str): + return HTMLResponse(_HTML) + + @router.get("/", response_class=HTMLResponse) async def index(): return HTMLResponse(_HTML) |