##// END OF EJS Templates
rhg: add harness tests for rhg files...
rhg: add harness tests for rhg files Differential Revision: https://phab.mercurial-scm.org/D8873

File last commit:

r45923:5fe25f8e default
r46008:e339693a default
Show More
commands.rs
10 lines | 237 B | application/rls-services+xml | RustLexer
pub mod files;
pub mod root;
use crate::error::CommandError;
/// The common trait for rhg commands
///
/// Normalize the interface of the commands provided by rhg
pub trait Command<'a> {
fn run(&self) -> Result<(), CommandError>;
}