MCPcopy Index your code
hub / github.com/ChrisFeldmeier/OpenCodeRust / question_routes

Function question_routes

crates/opencode-server/src/routes.rs:3599–3604  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3597}
3598
3599fn question_routes() -> Router<Arc<ServerState>> {
3600 Router::new()
3601 .route("/", get(list_questions))
3602 .route("/{id}/reply", post(reply_question))
3603 .route("/{id}/reject", post(reject_question))
3604}
3605
3606#[derive(Debug, Clone, Serialize)]
3607pub struct QuestionInfo {

Callers 1

routerFunction · 0.85

Calls 2

newFunction · 0.85
getFunction · 0.50

Tested by

no test coverage detected