lnbits-legend/lnbits/wallets/__init__.py

15 lines
459 B
Python
Raw Normal View History

# flake8: noqa
2022-07-31 23:51:57 +01:00
from .cliche import ClicheWallet
from .cln import CoreLightningWallet # legacy .env support
from .cln import CoreLightningWallet as CLightningWallet
2022-04-29 11:39:27 +01:00
from .eclair import EclairWallet
from .fake import FakeWallet
2020-05-04 17:34:53 +02:00
from .lnbits import LNbitsWallet
2020-04-25 22:11:27 +01:00
from .lndrest import LndRestWallet
2022-04-29 11:39:27 +01:00
from .lnpay import LNPayWallet
from .lntxbot import LntxbotWallet
from .opennode import OpenNodeWallet
2020-08-29 12:23:01 -03:00
from .spark import SparkWallet
2022-04-29 11:39:27 +01:00
from .void import VoidWallet