mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-19 18:11:30 +01:00
3bf3c91007
* add ln.tips * add wallet * revert lnbits * make format * .env.example * listener fix * reconnect fixed * make format * make format
18 lines
524 B
Python
18 lines
524 B
Python
# flake8: noqa
|
|
|
|
|
|
from .cliche import ClicheWallet
|
|
from .cln import CoreLightningWallet # legacy .env support
|
|
from .cln import CoreLightningWallet as CLightningWallet
|
|
from .eclair import EclairWallet
|
|
from .fake import FakeWallet
|
|
from .lnbits import LNbitsWallet
|
|
from .lndgrpc import LndWallet
|
|
from .lndrest import LndRestWallet
|
|
from .lnpay import LNPayWallet
|
|
from .lntips import LnTipsWallet
|
|
from .lntxbot import LntxbotWallet
|
|
from .opennode import OpenNodeWallet
|
|
from .spark import SparkWallet
|
|
from .void import VoidWallet
|