gr/gitlab/
gist.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use crate::{
    api_traits::CodeGist,
    cmds::gist::{Gist, GistListBodyArgs},
    io::{HttpRunner, Response},
};

use super::Gitlab;

impl<R: HttpRunner<Response = Response>> CodeGist for Gitlab<R> {
    fn list(&self, _args: GistListBodyArgs) -> crate::Result<Vec<Gist>> {
        todo!()
    }

    fn num_pages(&self) -> crate::Result<Option<u32>> {
        todo!()
    }

    fn num_resources(&self) -> crate::Result<Option<crate::api_traits::NumberDeltaErr>> {
        todo!()
    }
}