mod_interface 0.60.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;

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

the_module ::mod_interface! {

  /// layer_a
  layer layer_a;
  /// layer_b
  layer layer_b;

}

//

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