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 :: *;
mod tools 
{
  #[ allow( unused_imports ) ]
  pub use super ::super :: *;
}

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

the_module ::mod_interface! {

  /// layer_a
  layer layer_a;

}

// use macro1 as macro1b;
#[ allow( unused_imports ) ]
use macro2 as macro2b;
// use macro3 as macro3b;