1//! Validation tools. 2 3mod problem; 4mod validator; 5 6pub use problem::{Problem, Problems, Reason}; 7pub use validator::{Validate, Validator};