datadog_agent_config_testing/
lib.rs

1//! This crate's build.rs generates both the test-support config registry annotations AND the configuration
2//! documentation in Markdown format. Doc generation lives here (not in the config crate) because it is a dev/CI
3//! concern, not a prod build artifact.
4pub mod config_registry;
5
6mod smoke_test;
7pub use smoke_test::run_config_smoke_tests;