- 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
18 lines
375 B
Python
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())
|