vector_config/schema/
mod.rs

1// Public re-export of all of the core schema generation types that live in `vector-config-common`.
2pub use vector_config_common::schema::*;
3
4// Helpers for reducing boilerplate i.e. generating type-specific schemas with default values, and
5// so on.
6mod helpers;
7pub use self::helpers::*;
8
9pub mod visitors;
10
11pub mod parser;