1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//! adk-gateway library — exposes modules for integration testing.
pub mod access_control;
pub mod agent_config;
pub mod agent_registry;
pub mod audit;
pub mod browser_factory;
pub mod channel;
pub mod config;
pub mod context_coordinator;
pub mod cron;
pub mod delivery;
pub mod event_stream;
pub mod jwt;
pub mod knowledge_graph;
pub mod mcp;
pub mod plugin_manager;
pub mod reconnect;
pub mod router;
pub mod session_bridge;
pub mod shutdown;
pub mod skill_loader;
pub mod tool_registry;
pub mod task_log;
pub mod webhook;
pub mod rbac_bridge;
pub mod process_manager;
pub mod agent_codegen;
pub mod proxy_pool;
pub mod action_executor;
pub mod config_watcher;
pub mod control_panel;
pub mod gateway;
pub mod gateway_routes;
pub mod gateway_state;
pub mod graph_workflow;
pub mod metrics;
pub mod model_factory;
pub mod pairing;
pub mod rag;
pub mod sqlrite_store;
pub mod telemetry;
pub mod awp;
pub mod executable_tools;
pub mod fallback_chain;
pub mod health_monitor;
pub mod heartbeat_v2;
pub mod multi_user;
pub mod rate_limiter;
pub mod schema_sanitizer;
pub mod stale_context;
pub mod tool_approval;
pub mod config_encryption;
pub mod coding_agent;
#[cfg(feature = "acp")]
pub mod acp;