diff options
Diffstat (limited to 'users/grfn/achilles/src/common/mod.rs')
-rw-r--r-- | users/grfn/achilles/src/common/mod.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/users/grfn/achilles/src/common/mod.rs b/users/grfn/achilles/src/common/mod.rs new file mode 100644 index 000000000000..8368a6dd180f --- /dev/null +++ b/users/grfn/achilles/src/common/mod.rs @@ -0,0 +1,6 @@ +pub(crate) mod env; +pub(crate) mod error; +pub(crate) mod namer; + +pub use error::{Error, Result}; +pub use namer::{Namer, NamerOf}; |