| 44 | |
| 45 | #[derive(Deserialize, Clone, Debug)] |
| 46 | pub struct GithubCommitContent { |
| 47 | // First line is the title |
| 48 | // If multiple authors, it will add "Co-Authored by: <author>" at the end |
| 49 | pub message: String, |
| 50 | pub committer: Committer, |
| 51 | } |
| 52 | |
| 53 | #[derive(Deserialize, Clone, Debug)] |
| 54 | pub struct GithubAuthor { |
nothing calls this directly
no outgoing calls
no test coverage detected