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