mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-22 08:34:20 +01:00
It seems that loading the version from the source files triggers imports that may not yet have been installed.
15 lines
327 B
Python
15 lines
327 B
Python
from .invoice import Invoice
|
|
from .onion import OnionPayload, TlvPayload, LegacyOnionPayload
|
|
from .wire import LightningConnection, LightningServerSocket
|
|
|
|
__version__ = '0.0.2'
|
|
|
|
__all__ = [
|
|
"Invoice",
|
|
"LightningServerSocket",
|
|
"LightningConnection",
|
|
"OnionPayload",
|
|
"LegacyOnionPayload",
|
|
"TlvPayload",
|
|
]
|