File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ """
2+ satellite_node_network
3+ =======================
4+
5+ This module provides functionalities for managing a network of satellite nodes
6+ that support Edge Computing and Decentralized Quantum Network. It includes
7+ classes for satellite nodes, edge computing capabilities, and quantum
8+ communication protocols.
9+
10+ Public API:
11+ -----------
12+ - SatelliteNode: Class for managing individual satellite nodes.
13+ - EdgeComputing: Class for processing data at the edge.
14+ - QuantumCommunication: Class for secure quantum communication.
15+ - NodeManager: Class for managing connections and data flow between nodes.
16+ - load_config: Function to load configuration settings for the satellite network.
17+ """
18+
19+ from .satellite_node import SatelliteNode
20+ from .edge_computing import EdgeComputing
21+ from .quantum_communication import QuantumCommunication
22+ from .node_manager import NodeManager
23+ from .config import load_config
24+
25+ __all__ = [
26+ "SatelliteNode" ,
27+ "EdgeComputing" ,
28+ "QuantumCommunication" ,
29+ "NodeManager" ,
30+ "load_config"
31+ ]
You can’t perform that action at this time.
0 commit comments