Mercurial > public > mercurial-scm > hg
view rust/chg/src/lib.rs @ 41758:15d3facfa40a
tests: use () instead of \ to wrap lines
This should auto-format more consistently, and is slightly more
typical Python.
Differential Revision: https://phab.mercurial-scm.org/D5992
author | Augie Fackler <augie@google.com> |
---|---|
date | Sun, 13 Jan 2019 20:13:22 -0500 |
parents | 74da9d999cd7 |
children | bb936e25a84a |
line wrap: on
line source
// Copyright 2018 Yuya Nishihara <yuya@tcha.org> // // This software may be used and distributed according to the terms of the // GNU General Public License version 2 or any later version. extern crate bytes; #[macro_use] extern crate futures; extern crate libc; extern crate tokio; extern crate tokio_hglib; extern crate tokio_process; mod attachio; mod clientext; pub mod locator; pub mod message; pub mod procutil; mod runcommand; mod uihandler; pub use clientext::ChgClientExt; pub use uihandler::{ChgUiHandler, SystemHandler};