robson-gateway-webhook 0.1.0

Rust async agent orchestrator for automated development workflows
Documentation
1
2
3
4
5
6
7
use axum::{extract::State, http::StatusCode, response::IntoResponse};

use super::WebAppState;

pub async fn agent_webhook(State(_state): State<WebAppState>) -> impl IntoResponse {
    (StatusCode::OK, "".to_string()).into_response()
}