forked from kemitix/git-next
10 lines
257 B
Rust
10 lines
257 B
Rust
//
|
|
use crate as forgejo;
|
|
|
|
use git_next_core::{git, webhook};
|
|
|
|
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()
|
|
}
|