mina_node_native/node/mod.rs
1//! # Native Node
2//!
3//! This module provides the native platform implementation of the Mina node.
4//!
5//! It specializes the generic [`mina_node_common::Node`] with the native
6//! [`NodeService`](crate::NodeService) and provides [`NodeBuilder`] for
7//! configuring and constructing nodes with P2P networking, block production,
8//! HTTP server, and other components.
9
10mod builder;
11pub use builder::*;
12
13/// Native node type alias, combining the common node logic with native services.
14pub type Node = mina_node_common::Node<crate::NodeService>;