mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-10 00:09:04 +00:00
16 lines
327 B
Python
16 lines
327 B
Python
# bip85/__init__.py
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
try:
|
|
from .bip85 import BIP85
|
|
|
|
logger.info("BIP85 module imported successfully.")
|
|
except Exception as e:
|
|
logger.error("Failed to import BIP85 module: %s", e, exc_info=True)
|
|
BIP85 = None
|
|
|
|
__all__ = ["BIP85"] if BIP85 is not None else []
|