mod.rs
23 lines
| 781 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; | ||
Raphaël Gomès
|
r45673 | mod dirstate_status; | ||
Antoine Cezar
|
r45502 | mod find_root; | ||
Antoine Cezar
|
r45918 | mod list_tracked_files; | ||
Simon Sapin
|
r46751 | pub use cat::{cat, CatRevError, CatRevErrorKind}; | ||
Antoine Cezar
|
r46099 | pub use debugdata::{ | ||
Simon Sapin
|
r46751 | debug_data, DebugDataError, DebugDataErrorKind, DebugDataKind, | ||
Antoine Cezar
|
r46099 | }; | ||
Simon Sapin
|
r46751 | pub use find_root::{ | ||
find_root, find_root_from_path, FindRootError, FindRootErrorKind, | ||||
Antoine Cezar
|
r45918 | }; | ||
Antoine Cezar
|
r46107 | pub use list_tracked_files::{ | ||
Simon Sapin
|
r46751 | list_rev_tracked_files, FilesForRev, ListRevTrackedFilesError, | ||
Antoine Cezar
|
r46107 | ListRevTrackedFilesErrorKind, | ||
}; | ||||
Simon Sapin
|
r46751 | pub use list_tracked_files::{ | ||
Dirstate, ListDirstateTrackedFilesError, ListDirstateTrackedFilesErrorKind, | ||||
}; | ||||