the most insignificant change you could imagine lowkey

This commit is contained in:
2026-02-28 01:42:58 +01:00
parent f754e47221
commit ea3dd17261

View File

@@ -25,7 +25,7 @@ pub fn api_router() -> Router {
.route("/api/users/@{handle}", get(users::get_by_handle)) .route("/api/users/@{handle}", get(users::get_by_handle))
.route("/api/sessions/{id}", get(sessions::get_by_id)) .route("/api/sessions/{id}", get(sessions::get_by_id))
.route("/api/tags/{id}", get(tags::get_by_id)) .route("/api/tags/{id}", get(tags::get_by_id))
.route("/api/tags/#{id}", get(tags::get_by_name)) .route("/api/tags/#{name}", get(tags::get_by_name))
} }
pub struct CompositeError(Response); pub struct CompositeError(Response);