We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2855d9b commit 102881aCopy full SHA for 102881a
1 file changed
crates/bm_http/src/http.rs
@@ -57,7 +57,7 @@ pub async fn serve(
57
};
58
59
let router = Router::new()
60
- .nest("/api/1", api1::router(config.api1, state.clone()))
+ .nest("/api", api1::router(config.api1, state.clone()))
61
.nest("/health", health::router(state))
62
.fallback_service(ServeDir::new(directory))
63
.layer(
0 commit comments