32 lines
604 B
Python
Raw Permalink Normal View History

2025-11-12 00:28:07 +08:00
"""
社交媒体自动发布器
一个统一的社交媒体自动化发布平台支持小红书和抖音的内容自动发布
"""
__version__ = "1.0.0"
__author__ = "Your Name"
__email__ = "your.email@example.com"
from .core.publisher import Publisher
from .core.models import (
Content,
ImageNote,
VideoContent,
AccountInfo,
PublishTask,
PublishResult,
PlatformType,
UploadStatus
)
__all__ = [
"Publisher",
"Content",
"ImageNote",
"VideoContent",
"AccountInfo",
"PublishTask",
"PublishResult",
"PlatformType",
"UploadStatus"
]