Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
fix doc 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ImSoZRious committed Jul 30, 2023
1 parent 8be132e commit 4833c24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/handler/estamp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ impl Handler {
path = "/estamp",
tag = "Estamp",
responses(
(status = 200, description = "Success", body = User),
(status = 200, description = "Success", body = GetAllEstampResponse),
),
)]
pub async fn get_all_estamps(State(handler): State<Handler>) -> impl IntoResponse {
Expand Down Expand Up @@ -66,7 +66,7 @@ pub async fn claim_estamp(
path = "/estamp/my",
tag = "Estamp",
responses(
(status = 200, description = "Success"),
(status = 200, description = "Success", body = GetUserEstampsResponse),
(status = 401, description = "Unauthorized"),
),
security(
Expand Down

0 comments on commit 4833c24

Please sign in to comment.