Skip to main content

changeset_parse/
lib.rs

1mod error;
2mod parse;
3mod serialize;
4
5pub use error::{FormatError, FrontMatterError, ValidationError};
6pub use parse::parse_changeset;
7pub use serialize::serialize_changeset;
8
9pub type Result<T> = std::result::Result<T, FormatError>;