Skip to main content

camel_config/
lib.rs

1pub mod config;
2pub mod context_ext;
3pub mod discovery;
4pub mod yaml;
5
6pub use config::{CamelConfig, ComponentsConfig, ObservabilityConfig, SupervisionCamelConfig};
7pub use discovery::{DiscoveryError, discover_routes};
8pub use yaml::{
9    YamlRoute, YamlRoutes, YamlStep, load_from_file, parse_yaml, parse_yaml_to_declarative,
10};