git-next/crates/forge-forgejo/src/webhook/parse.rs

12 lines
275 B
Rust
Raw Normal View History

//
use crate as forgejo;
use git_next_core::webhook;
use git_next_git as git;
pub fn parse_body(
body: &webhook::forge_notification::Body,
) -> git::forge::webhook::Result<webhook::Push> {
serde_json::from_str::<forgejo::webhook::Push>(body.as_str())?.try_into()
}