12 lines
481 B
Python
12 lines
481 B
Python
# EU-Utility Core Package
|
|
__version__ = "1.0.0"
|
|
|
|
# NOTE: We don't auto-import PyQt-dependent modules here to avoid
|
|
# import errors when PyQt6 is not installed. Import them directly:
|
|
# from core.plugin_api import get_api
|
|
# from core.ocr_service import get_ocr_service
|
|
|
|
# These modules don't depend on PyQt6 and are safe to import
|
|
from .nexus_api import NexusAPI, get_nexus_api, EntityType, SearchResult, ItemDetails, MarketData
|
|
from .log_reader import LogReader, get_log_reader
|