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::ContainerRegistry,
    cmds::docker::{DockerListBodyArgs, ImageMetadata, RegistryRepository, RepositoryTag},
    io::{HttpResponse, HttpRunner},
    Result,
};

use super::Github;

impl<R: HttpRunner<Response = HttpResponse>> ContainerRegistry for Github<R> {
    fn list_repositories(&self, _args: DockerListBodyArgs) -> Result<Vec<RegistryRepository>> {
        todo!("list_repositories")
    }

    fn list_repository_tags(&self, _args: DockerListBodyArgs) -> Result<Vec<RepositoryTag>> {
        todo!()
    }

    fn num_pages_repository_tags(&self, _repository_id: i64) -> Result<Option<u32>> {
        todo!()
    }

    fn num_pages_repositories(&self) -> Result<Option<u32>> {
        todo!()
    }

    fn get_image_metadata(&self, _repository_id: i64, _tag: &str) -> Result<ImageMetadata> {
        todo!()
    }

    fn num_resources_repository_tags(
        &self,
        _repository_id: i64,
    ) -> Result<Option<crate::api_traits::NumberDeltaErr>> {
        todo!()
    }

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