mpl_registry_api/
lib.rs

1//! MPL Registry API
2//!
3//! REST service for SType discovery and schema retrieval.
4
5pub mod handlers;
6pub mod routes;
7pub mod state;
8pub mod cache;
9pub mod error;
10
11pub use routes::create_router;
12pub use state::RegistryState;