1//! # API Controllers Module 2//! 3//! Handles HTTP request processing and business logic coordination. 4//! 5//! ## Controllers 6//! 7//! * `relayer` - Transaction and relayer management endpoints 8//! * `plugin` - Plugin endpoints 9 10pub mod plugin; 11pub mod relayer;