(cs *ClientSession, params P)
| 960 | } |
| 961 | |
| 962 | func newClientRequest[P Params](cs *ClientSession, params P) *ClientRequest[P] { |
| 963 | return &ClientRequest[P]{Session: cs, Params: params} |
| 964 | } |
| 965 | |
| 966 | // Ping makes an MCP "ping" request to the server. |
| 967 | func (cs *ClientSession) Ping(ctx context.Context, params *PingParams) error { |
no outgoing calls
no test coverage detected
searching dependent graphs…