style: fix rustfmt formatting for user-input route

This commit is contained in:
Ben Gao
2026-05-25 22:25:28 +08:00
committed by Hunter Bown
parent b8439c16fc
commit e2b58e6b22
+4 -1
View File
@@ -519,7 +519,10 @@ pub fn build_router(state: RuntimeApiState) -> Router {
.route("/v1/threads/{id}/compact", post(compact_thread))
.route("/v1/threads/{id}/events", get(stream_thread_events))
.route("/v1/approvals/{approval_id}", post(decide_approval))
.route("/v1/user-input/{thread_id}/{input_id}", post(submit_user_input))
.route(
"/v1/user-input/{thread_id}/{input_id}",
post(submit_user_input),
)
.route("/v1/tasks", get(list_tasks).post(create_task))
.route("/v1/tasks/{id}", get(get_task))
.route("/v1/tasks/{id}/cancel", post(cancel_task))