Skip to content

Commit 385b585

Browse files
committed
feat: Add route to check_name endpoint
1 parent b408315 commit 385b585

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/jz-api/src/v1/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ mod explore;
1212
pub fn v1_route(config: &mut actix_web::web::ServiceConfig) {
1313
config.service(
1414
scope("/v1")
15-
.route("/explore", get().to(explore::explore))
1615
.route("", get().to(v1_hello))
16+
.route("/explore", get().to(explore::explore))
1717
.route("/check/{name}", get().to(utils::check_name::check_name))
1818
.service(
1919
scope("/merge").route("/users/{username}", get().to(merge::users::merge_users)),

0 commit comments

Comments
 (0)