8 lines
270 B
Python
8 lines
270 B
Python
from pathlib import Path
|
|
|
|
from conf import BASE_DIR
|
|
from .main import XiaoHongShuVideo, XiaoHongShuImage, xiaohongshu_setup
|
|
|
|
Path(BASE_DIR / "cookies" / "xiaohongshu_uploader").mkdir(exist_ok=True)
|
|
|
|
__all__ = ['XiaoHongShuVideo', 'XiaoHongShuImage', 'xiaohongshu_setup'] |