gitlobster 1.3.0

A tool for cloning all available repositories in a GitLab instance
1
2
3
4
5
6
7
8
9
mod cli;
mod cloner;
mod git;
mod gitlab;
use anyhow::Result;

fn main() -> Result<()> {
    cli::run()
}