| New file |
| | |
| | | #!/usr/bin/python
|
| | | # -*- coding: GBK -*-
|
| | | #-------------------------------------------------------------------------------
|
| | | #
|
| | | ##@package PyMongoDB.GMToolLogicProcess.Commands.GMT_ReloadConfig
|
| | | #
|
| | | # @todo:GM工具命令 - 重读配置
|
| | | # @author hxp
|
| | | # @date 2025-12-13
|
| | | # @version 1.0
|
| | | #
|
| | | # 详细描述: GM工具命令 - 重读配置
|
| | | #
|
| | | #-------------------------------------------------------------------------------
|
| | | #"""Version = 2025-12-13 17:00"""
|
| | | #-------------------------------------------------------------------------------
|
| | |
|
| | | import GMCommon
|
| | | import ReadChConfig
|
| | |
|
| | | ## 收到gm命令执行
|
| | | # @param gmCmdDict:gm命令字典
|
| | | # @return None |
| | | def OnExec(gmCmdDict):
|
| | | ReadChConfig.SetReloadConfig()
|
| | | return GMCommon.Def_Success
|