aboutsummaryrefslogtreecommitdiff
path: root/src/list/mod.rs
blob: ed71e6a68f20946a3a2b8773b3b84a894243ef08 (plain)
1
2
3
4
5
6
7
8
9
10
11
use anyhow::Result;

use crate::repo::Repos;

impl crate::GTree {
    pub async fn list(&self, repos: Repos) -> Result<()> {
        repos.iter().for_each(|repo| println!("{}", repo));

        Ok(())
    }
}