1// SPDX-License-Identifier: Apache-2.0 2 3//! Input representation module. 4//! 5//! This module provides the data structures for representing the input of the 6//! validator. 7 8pub mod config; 9pub mod proto; 10pub mod traits; 11pub mod yaml;