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//! * `health` - Health check endpoints
9//! * `relayer` - Transaction and relayer management endpoints
10//! * `plugin` - Plugin endpoints
11//! * `notifications` - Notification management endpoints
12//! * `signers` - Signer management endpoints
13
14pub mod api_key;
15pub mod health;
16pub mod network;
17pub mod notification;
18pub mod plugin;
19pub mod relayer;
20pub mod signer;