| 48 | |
| 49 | #[derive(Clone)] |
| 50 | pub struct GitHubClient { |
| 51 | pub client: Arc<Octocrab>, |
| 52 | pub owner: String, |
| 53 | pub repo: String, |
| 54 | } |
| 55 | |
| 56 | impl GitHubClient { |
| 57 | pub fn new(token: String, owner: String, repo: String) -> Result<Self> { |
nothing calls this directly
no outgoing calls
no test coverage detected