SetPythonTools 设置 Python 运行时的可用工具列表 (PTC 支持)
(tools []string)
| 636 | |
| 637 | // SetPythonTools 设置 Python 运行时的可用工具列表 (PTC 支持) |
| 638 | func (m *RuntimeManager) SetPythonTools(tools []string) { |
| 639 | if runtime, ok := m.runtimes[LangPython].(*PythonRuntime); ok { |
| 640 | runtime.SetTools(tools) |
| 641 | } |
| 642 | } |
| 643 | |
| 644 | // SetPythonBridgeURL 设置 Python 运行时的 HTTP 桥接服务器地址 (PTC 支持) |
| 645 | func (m *RuntimeManager) SetPythonBridgeURL(url string) { |
no test coverage detected