gr/gitlab/
trending.rs

1use crate::{
2    api_traits::TrendingProjectURL,
3    cmds::trending::TrendingProject,
4    io::{HttpResponse, HttpRunner},
5    Result,
6};
7
8use super::Gitlab;
9
10impl<R: HttpRunner<Response = HttpResponse>> TrendingProjectURL for Gitlab<R> {
11    fn list(&self, _language: String) -> Result<Vec<TrendingProject>> {
12        unimplemented!()
13    }
14}