mit-commit 1.14.0

For building commit linters. This makes it eas.
Documentation
use crate::{Body, Comment};

/// A `Fragment` from the `CommitMessage`, either a comment or body
#[derive(Clone, Debug, PartialEq)]
pub enum Fragment {
    Body(Body),
    Comment(Comment),
}