rust/chg/src/lib.rs
author Yuya Nishihara <yuya@tcha.org>
Fri, 10 Apr 2020 22:23:10 +0900
changeset 44750 c794d0da5fb2
parent 44738 1be605526c34
child 44751 94cace4b80ea
permissions -rw-r--r--
rust-chg: reimplement uihandler by using async-trait and tokio-0.2 We no longer have to consume self and arguments. Differential Revision: https://phab.mercurial-scm.org/D8444

// 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.

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};