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