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