souko/
lib.rs

1//! A simple command line utility that provides an easy way to organize clones of remote git repositories
2//!
3//! # Usage
4//!
5//! Add this to your `Cargo.toml`:
6//!
7//! ```toml
8//! [dependencies]
9//! souko = "0.2.2"
10//! ```
11
12#![doc(html_root_url = "https://docs.rs/souko/0.2.2")]
13
14pub use color_eyre::eyre::Result;
15
16pub use crate::souko::Souko;
17
18#[macro_use]
19mod macros;
20
21mod application;
22mod domain;
23mod infrastructure;
24mod presentation;
25mod util;
26
27mod souko;