bugbite 0.0.15

library for bug, issue, and ticket mangling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use tracing::debug;

use crate::objects::github::Issue;
use crate::traits::RequestSend;

#[derive(Debug)]
pub struct Request(Vec<reqwest::Request>);

impl RequestSend for Request {
    type Output = Vec<Issue>;

    async fn send(&self) -> crate::Result<Self::Output> {
        debug!("{:?}", self.0);
        todo!()
    }
}