openzeppelin_relayer/api/mod.rs
1//! # API Module
2//!
3//! Contains HTTP API implementation for the relayer service.
4//!
5//! ## Structure
6//!
7//! * `controllers` - Request handling and business logic
8//! * `routes` - API endpoint definitions and routing
9//! * `middleware` - HTTP middleware for timeouts, concurrency, etc.
10
11pub mod controllers;
12
13pub mod middleware;
14
15pub mod routes;