mirror of
https://github.com/AkitaEngineering/Akita-Meshtastic-Meshcore-Bridge.git
synced 2026-03-28 17:42:42 +01:00
11 lines
164 B
Python
11 lines
164 B
Python
# ammb/__init__.py
|
|
"""
|
|
Akita Meshtastic Meshcore Bridge (AMMB) Package.
|
|
"""
|
|
|
|
from .bridge import Bridge
|
|
|
|
__all__ = ["Bridge", "__version__"]
|
|
|
|
__version__ = "0.2.1"
|