feat: 新增 automation 自动化模块和配置管理

This commit is contained in:
2026-04-29 16:18:12 +08:00
parent 463573235b
commit 89b01bb522
6 changed files with 637 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
"""
自动化模块 - 从 secsion.com 自动下载报表并导入 SaleShow
"""
from .secsion import SecsionDownloader
from .uploader import import_excel_file
from .scheduler import init_scheduler
__all__ = ['SecsionDownloader', 'import_excel_file', 'init_scheduler']