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