15 lines
309 B
Python
15 lines
309 B
Python
"""
|
|||
|
|
Commands 模块
|
||
|
|
"""
|
||
|
|
|
||
|
|
# Handle imports with both relative and absolute paths
|
||
|
|
try:
|
||
|
|
from .organize_command import OrganizeCommand
|
||
|
|
except ImportError:
|
||
|
|
# Fallback to absolute imports when running as script
|
||
|
|
from commands.organize_command import OrganizeCommand
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"OrganizeCommand",
|
||
|
|
]
|