1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(docsrs, feature(doc_cfg))]

mod impls;
#[cfg_attr(docsrs, doc(cfg(feature = "schemars")))]
#[cfg(feature = "schemars")]
mod schemars_transform;
mod to_schema;

#[cfg_attr(docsrs, doc(cfg(feature = "schemars")))]
#[cfg(feature = "schemars")]
pub use schemars_transform::schemars_transform;
pub use to_schema::{component_id, ToSchema};