Skip to main content

a2a_protocol_server/dispatch/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2026 Tom F.
3
4//! HTTP dispatch layer — JSON-RPC and REST routing.
5
6pub mod cors;
7pub mod jsonrpc;
8pub mod rest;
9
10pub use cors::CorsConfig;
11pub use jsonrpc::JsonRpcDispatcher;
12pub use rest::RestDispatcher;