11 lines
286 B
Rust
11 lines
286 B
Rust
|
//
|
||
|
use crate as github;
|
||
|
use git_next_config as config;
|
||
|
use git_next_git as git;
|
||
|
|
||
|
pub fn parse_body(
|
||
|
body: &config::webhook::message::Body,
|
||
|
) -> git::forge::webhook::Result<config::webhook::push::Push> {
|
||
|
serde_json::from_str::<github::webhook::Push>(body.as_str())?.try_into()
|
||
|
}
|