1//! Frodobuf Schema 2//! 3#![deny(missing_docs)] 4 5pub(crate) mod format; 6pub mod model; 7 8#[cfg(test)] 9mod tests { 10 #[test] 11 fn it_works() { 12 assert_eq!(2 + 2, 4); 13 } 14}