mod.rs
11 lines
| 447 B
| application/rls-services+xml
|
RustLexer
Antoine Cezar
|
r45917 | //! A distinction is made between operations and commands. | ||
//! An operation is what can be done whereas a command is what is exposed by | ||||
//! the cli. A single command can use several operations to achieve its goal. | ||||
Antoine Cezar
|
r46112 | mod cat; | ||
Antoine Cezar
|
r46098 | mod debugdata; | ||
Antoine Cezar
|
r45918 | mod list_tracked_files; | ||
Simon Sapin
|
r47478 | pub use cat::{cat, CatOutput}; | ||
Simon Sapin
|
r47166 | pub use debugdata::{debug_data, DebugDataKind}; | ||
Simon Sapin
|
r47169 | pub use list_tracked_files::Dirstate; | ||
Simon Sapin
|
r47166 | pub use list_tracked_files::{list_rev_tracked_files, FilesForRev}; | ||