wok-dev 1.0.0-alpha.2

A multirepo management tool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Wok
//!
//! Wok lib is the library behind the [`wok`](https://github.com/lig/wok) tool.
//!
//! The `wok` binary allows to control several git repositories as a single
//! project.
//!
//! See [Wok's README](https://github.com/lig/wok/blob/master/README.md) and `wok --help` for details on how to use the tool.

pub mod cmd;
pub mod config;
pub mod repo;

pub const DEFAULT_CONFIG_NAME: &str = "wok.toml";