rust/hg-core/src/operations/mod.rs
changeset 48068 bf8837e3d7ce
parent 46744 b1f2c2b336ec
child 49980 95ffa065204e
equal deleted inserted replaced
48067:d3eb5f50052c 48068:bf8837e3d7ce
     2 //! An operation is what can be done whereas a command is what is exposed by
     2 //! An operation is what can be done whereas a command is what is exposed by
     3 //! the cli. A single command can use several operations to achieve its goal.
     3 //! the cli. A single command can use several operations to achieve its goal.
     4 
     4 
     5 mod cat;
     5 mod cat;
     6 mod debugdata;
     6 mod debugdata;
     7 mod dirstate_status;
       
     8 mod list_tracked_files;
     7 mod list_tracked_files;
     9 pub use cat::{cat, CatOutput};
     8 pub use cat::{cat, CatOutput};
    10 pub use debugdata::{debug_data, DebugDataKind};
     9 pub use debugdata::{debug_data, DebugDataKind};
    11 pub use list_tracked_files::Dirstate;
    10 pub use list_tracked_files::Dirstate;
    12 pub use list_tracked_files::{list_rev_tracked_files, FilesForRev};
    11 pub use list_tracked_files::{list_rev_tracked_files, FilesForRev};