ID returns the unique identifier for this interception.
()
| 15 | type Interceptor interface { |
| 16 | // ID returns the unique identifier for this interception. |
| 17 | ID() uuid.UUID |
| 18 | // Setup injects some required dependencies. This MUST be called before using the interceptor |
| 19 | // to process requests. |
| 20 | Setup(logger slog.Logger, rec recorder.Recorder, mcpProxy mcp.ServerProxier) |
no outgoing calls