mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-08 23:38:49 +00:00
update
This commit is contained in:
14
src/local_bip85/__init__.py
Normal file
14
src/local_bip85/__init__.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# bip85/__init__.py
|
||||
|
||||
import logging
|
||||
import traceback
|
||||
|
||||
try:
|
||||
from .bip85 import BIP85
|
||||
logging.info("BIP85 module imported successfully.")
|
||||
except Exception as e:
|
||||
logging.error(f"Failed to import BIP85 module: {e}")
|
||||
logging.error(traceback.format_exc()) # Log full traceback
|
||||
|
||||
__all__ = ['BIP85']
|
||||
|
Reference in New Issue
Block a user