Hide away support modules.

This commit is contained in:
Gav
2018-01-16 18:03:13 +01:00
parent e410a3a665
commit b62a8f9587
12 changed files with 14 additions and 10 deletions
+4 -10
View File
@@ -4,16 +4,10 @@
#[macro_use]
extern crate runtime_support;
mod endiansensitive;
mod streamreader;
mod joiner;
mod slicable;
mod primitives;
mod keyedvec;
mod function;
mod environment;
mod storage;
mod testing;
mod support;
pub use support::{endiansensitive, streamreader, joiner, slicable, primitives, keyedvec, function,
environment, storage, testing};
#[allow(unused)]
mod system;
#[allow(unused)]
@@ -0,0 +1,10 @@
pub mod endiansensitive;
pub mod streamreader;
pub mod joiner;
pub mod slicable;
pub mod primitives;
pub mod keyedvec;
pub mod function;
pub mod environment;
pub mod storage;
pub mod testing;