Skip to main content

pidgin_lang/validator/
mod.rs

1pub mod syntax;
2pub mod schema;
3
4#[derive(Debug, Clone)]
5pub struct ValidationError {
6    pub code: String,
7    pub message: String,
8}