We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b408315 commit 385b585Copy full SHA for 385b585
crates/jz-api/src/v1/mod.rs
@@ -12,8 +12,8 @@ mod explore;
12
pub fn v1_route(config: &mut actix_web::web::ServiceConfig) {
13
config.service(
14
scope("/v1")
15
- .route("/explore", get().to(explore::explore))
16
.route("", get().to(v1_hello))
+ .route("/explore", get().to(explore::explore))
17
.route("/check/{name}", get().to(utils::check_name::check_name))
18
.service(
19
scope("/merge").route("/users/{username}", get().to(merge::users::merge_users)),
0 commit comments