##// END OF EJS Templates
rhg: add Command trait for subcommands implemented by rhg...
rhg: add Command trait for subcommands implemented by rhg Normalizes the interface of the cli's commands Differential Revision: https://phab.mercurial-scm.org/D8611

File last commit:

r45504:0b950a32 default
r45504:0b950a32 default
Show More
main.rs
7 lines | 110 B | application/rls-services+xml | RustLexer
Antoine Cezar
rhg: add Command trait for subcommands implemented by rhg...
r45504 mod commands;
mod error;
Antoine Cezar
rhg: add rhg crate...
r45503 mod exitcode;
fn main() {
std::process::exit(exitcode::UNIMPLEMENTED_COMMAND)
}