//! Demo nodes module
//!
//! This module re-exports the functions from the example files,
//! allowing tests to import and use the exact same code that users run.
// Modules that work with bundled messages only
// Re-export the main functions for easy access
pub use run_add_two_ints_client;
pub use run_add_two_ints_server;
pub use run_fibonacci_action_client;
pub use run_fibonacci_action_server;
pub use run_listener;
pub use run_talker;