EG/core/drag_drop/__init__.py
2026-01-21 09:59:13 +08:00

10 lines
264 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
跨平台拖拽检测模块
提供统一的拖拽检测接口支持Windows、Linux和macOS平台。
"""
from .base_detector import BaseDragDetector
from .platform_detector import PlatformDragDetector
__all__ = ['BaseDragDetector', 'PlatformDragDetector']