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
10pub mod controllers;
11
12pub mod routes;