1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
mod error;

use error::Error;

// Public exports
pub use error::ErrorType;

/// Validate a JSON document based on RFC 8259 latest standard.
pub fn validate(_code: &str) -> Vec<Error> {
  unimplemented!();
}