(reaction: &GithubReactionHandle, token: Option<&str>)
| 4792 | } |
| 4793 | |
| 4794 | fn github_remove_reaction(reaction: &GithubReactionHandle, token: Option<&str>) { |
| 4795 | let _ = gh_api_json("DELETE", &reaction.delete_endpoint, None, token); |
| 4796 | } |
| 4797 | |
| 4798 | fn github_create_comment( |
| 4799 | owner: &str, |
no test coverage detected