author | Antoine Cezar <antoine.cezar@octobus.net> |
Fri, 05 Jun 2020 09:01:35 +0200 | |
changeset 45049 | 513b3ef277a3 |
parent 44982 | bacf6c7ef01b |
child 45050 | 18f8d3b31baa |
permissions | -rw-r--r-- |
44982
bacf6c7ef01b
rhg: add Command trait for subcommands implemented by rhg
Antoine Cezar <antoine.cezar@octobus.net>
parents:
44981
diff
changeset
|
1 |
mod commands; |
bacf6c7ef01b
rhg: add Command trait for subcommands implemented by rhg
Antoine Cezar <antoine.cezar@octobus.net>
parents:
44981
diff
changeset
|
2 |
mod error; |
44981 | 3 |
mod exitcode; |
45049
513b3ef277a3
rhg: add RootCommand using hg-core FindRoot operation to prepare `hg root`
Antoine Cezar <antoine.cezar@octobus.net>
parents:
44982
diff
changeset
|
4 |
mod ui; |
44981 | 5 |
|
6 |
fn main() { |
|
7 |
std::process::exit(exitcode::UNIMPLEMENTED_COMMAND) |
|
8 |
} |