Skip to content

Commit 2ea1dee

Browse files
authored
Create __init__.py
1 parent ca247b4 commit 2ea1dee

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

satellite_node_network/__init__.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
]

0 commit comments

Comments
 (0)