diff rust/hg-core/src/operations/mod.rs @ 44980:5965efb609b6

hg-core: add FindRoot operation to find repository root path Differential Revision: https://phab.mercurial-scm.org/D8609
author Antoine Cezar <antoine.cezar@octobus.net>
date Fri, 05 Jun 2020 08:48:09 +0200
parents a46e36b82461
children 98817e5daca7
line wrap: on
line diff
--- a/rust/hg-core/src/operations/mod.rs	Fri Jun 05 08:46:35 2020 +0200
+++ b/rust/hg-core/src/operations/mod.rs	Fri Jun 05 08:48:09 2020 +0200
@@ -1,3 +1,6 @@
+mod find_root;
+pub use find_root::{FindRoot, FindRootError, FindRootErrorKind};
+
 /// An interface for high-level hg operations.
 ///
 /// A distinction is made between operation and commands.