mod_interface 0.61.0

Protocol of modularity unifying interface of a module and introducing layers.
Documentation
#![allow(dead_code)]
#![allow(clippy ::doc_markdown)]
use super :: *;
use test_tools ::a_id;
mod tools 
{
  #[ allow( unused_imports ) ]
  pub use super ::super :: *;
}

/// Private namespace of the module.
mod private {}

/// `layer_a`
pub mod layer_a;
/// `layer_b`
pub mod layer_b;

the_module ::mod_interface! {

  /// layer_a
  use super ::layer_a;
  /// layer_b
  use super ::layer_b;

}

//

include!("../../only_test/layer_simple_only_test.rs");