mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-29 22:44:30 +01:00
10 lines
366 B
Python
10 lines
366 B
Python
# type: ignore
|
|
from ..core.settings import settings
|
|
from .corelightningrest import CoreLightningRestWallet # noqa: F401
|
|
from .fake import FakeWallet # noqa: F401
|
|
from .lnbits import LNbitsWallet # noqa: F401
|
|
from .lndrest import LndRestWallet # noqa: F401
|
|
|
|
if settings.mint_lightning_backend is None:
|
|
raise Exception("MINT_LIGHTNING_BACKEND not configured")
|