Versions in this module Expand all Collapse all v0 v0.2.0 May 15, 2026 v0.1.0 May 12, 2026 Changes in this version + type Client struct + func (c *Client) Notify(method string, params interface{}) + func (c *Client) Request(method string, params interface{}) (*Response, error) + type Request struct + ID int + JSONRPC string + Method string + Params interface{} + type Response struct + Error *ResponseError + ID int + JSONRPC string + Method string + Result json.RawMessage + type ResponseError struct + Code int + Message string + type ServerManager struct + func NewServerManager() *ServerManager + func (m *ServerManager) IsRunning(name string) bool + func (m *ServerManager) List() []string + func (m *ServerManager) Start(name, command string, args ...string) error + func (m *ServerManager) Stop(name string) error