gr/gitlab/
gist.rs

1use crate::{
2    api_traits::CodeGist,
3    cmds::gist::{Gist, GistListBodyArgs},
4    io::{HttpResponse, HttpRunner},
5};
6
7use super::Gitlab;
8
9impl<R: HttpRunner<Response = HttpResponse>> CodeGist for Gitlab<R> {
10    fn list(&self, _args: GistListBodyArgs) -> crate::Result<Vec<Gist>> {
11        todo!()
12    }
13
14    fn num_pages(&self) -> crate::Result<Option<u32>> {
15        todo!()
16    }
17
18    fn num_resources(&self) -> crate::Result<Option<crate::api_traits::NumberDeltaErr>> {
19        todo!()
20    }
21}