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
910pub mod controllers;
1112pub mod routes;