openzeppelin_relayer/api/controllers/mod.rs
1//! # API Controllers Module
2//!
3//! Handles HTTP request processing and business logic coordination.
4//!
5//! ## Controllers
6//!
7//! * `api_key` - API key management endpoints
8//! * `relayer` - Transaction and relayer management endpoints
9//! * `plugin` - Plugin endpoints
10//! * `notifications` - Notification management endpoints
11//! * `signers` - Signer management endpoints
12
13pub mod api_key;
14pub mod notification;
15pub mod plugin;
16pub mod relayer;
17pub mod signer;