Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8b29f84

Browse files
committedFeb 3, 2025··
Fix route duplication
1 parent b931e01 commit 8b29f84

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed
 

‎src/subcommand/server.rs

-5
Original file line numberDiff line numberDiff line change
@@ -265,11 +265,6 @@ impl Server {
265265
get(r::parents_paginated),
266266
)
267267
.route("/r/sat/{sat_number}", get(r::sat))
268-
.route("/r/sat/{sat_number}/at/{index}", get(r::sat_at_index))
269-
.route(
270-
"/r/sat/{sat_number}/at/{index}/content",
271-
get(r::sat_at_index_content),
272-
)
273268
.route("/r/sat/{sat_number}/{page}", get(r::sat_paginated))
274269
.route("/r/tx/{txid}", get(r::tx))
275270
.route(

0 commit comments

Comments
 (0)
Please sign in to comment.