blob: afd4717b3fd2f1a4de431ca6c9c7770093e3459e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use serde::Deserialize;
/// Bad version of `/repos/{owner}/{repo}/pulls/{pull_number}` for Github's api
#[derive(Clone, Debug, Deserialize)]
pub struct PullRequest {
pub merge_commit_sha: Option<String>,
}
/// `/random_teawie` for the teawieAPI
#[derive(Clone, Debug, Deserialize)]
pub struct RandomTeawie {
pub url: Option<String>,
}
|