Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
archeoss committed Dec 1, 2023
1 parent 4f8d6ed commit 1d9b344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/services/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub fn api_router_v1(auth_state: BobAuthState) -> Result<Router<BobAuthState>, R
.api_route("/nodes/list", &Method::GET, get_nodes_list)
.api_route("/nodes/:node_name", &Method::GET, get_node_info)
.api_route("/vdisks/list", &Method::GET, get_vdisks_list)
.api_route("/vdisks/vdisk_id", &Method::GET, get_vdisk_info)
.api_route("/vdisks/:vdisk_id", &Method::GET, get_vdisk_info)
.api_route(
"/nodes/:node_name/metrics",
&Method::GET,
Expand Down

0 comments on commit 1d9b344

Please sign in to comment.