14 lines
292 B
Python
14 lines
292 B
Python
"""
|
|
平台适配层
|
|
包含各平台的适配器实现。
|
|
"""
|
|
|
|
from .base_adapter import BaseAdapter
|
|
from .xiaohongshu.xiaohongshu_adapter import XiaoHongShuAdapter
|
|
from .douyin.douyin_adapter import DouyinAdapter
|
|
|
|
__all__ = [
|
|
"BaseAdapter",
|
|
"XiaoHongShuAdapter",
|
|
"DouyinAdapter"
|
|
] |