git-ar 1.1.12

Git all remotes. Git cli tool that targets both Github and Gitlab. Brings common development operations such as opening a pull request down to the shell. This is an alternative to both Github https://github.com/cli/cli and Gitlab https://gitlab.com/gitlab-org/cli cli tools.
Documentation
use crate::{
    api_traits::CodeGist,
    cmds::gist::{Gist, GistListBodyArgs},
    io::{HttpResponse, HttpRunner},
};

use super::Gitlab;

impl<R: HttpRunner<Response = HttpResponse>> 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!()
    }
}