Skip to content

Commit

Permalink
fix(router): Correct router name from "terminal" to "packages" (#3697)
Browse files Browse the repository at this point in the history
  • Loading branch information
metaboulie authored Feb 5, 2025
1 parent c6d0b8f commit 432046f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion marimo/_server/api/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def build_routes(base_url: str = "") -> List[BaseRoute]:
terminal_router, prefix="/terminal", name="terminal"
)
app_router.include_router(
packages_router, prefix="/api/packages", name="terminal"
packages_router, prefix="/api/packages", name="packages"
)
app_router.include_router(health_router, name="health")
app_router.include_router(ws_router, name="ws")
Expand Down

0 comments on commit 432046f

Please sign in to comment.