git_wok/
lib.rs

1//! # Git Wok
2//!
3//! Git Wok lib is the library behind the [`wok`](https://github.com/lig/wok) tool.
4//!
5//! The `wok` binary allows to control several git repositories as a single
6//! project.
7//!
8//! See [Git Wok's README](https://github.com/lig/wok/blob/master/README.md) and `wok --help` for details on how to use the tool.
9
10pub mod cmd;
11pub mod config;
12pub mod repo;
13
14pub const DEFAULT_CONFIG_NAME: &str = "wok.toml";