openzeppelin_relayer/api/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
//! # API Module
//!
//! Contains HTTP API implementation for the relayer service.
//!
//! ## Structure
//!
//! * `controllers` - Request handling and business logic
//! * `routes` - API endpoint definitions and routing

pub mod controllers;

pub mod routes;