Files
journal_organizer/commands/__init__.py
T

15 lines
309 B
Python
Raw Normal View History

"""
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",
]