Files
Mycontent/soul-api/devloy.py
乘风 0ce86645b1 feat: enhance deployment scripts and experience index
- Added a new webhook integration for Feishu/Lark groups, allowing for custom bot notifications.
- Refactored deployment scripts to unify the deployment process, improving maintainability and reducing redundancy.
- Updated the experience index to include recent entries and improved documentation for various roles.

Made-with: Cursor
2026-04-15 15:23:50 +08:00

18 lines
375 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
兼容入口:保留 devloy.py 命令,实际复用 master.py 的部署实现。
这样可以确保旧命令仍可用,同时避免同一套部署逻辑维护两份。
"""
from __future__ import print_function
import sys
from master import main as master_main
if __name__ == "__main__":
sys.exit(master_main())