isEmptyMCPToolsDiff returns true if the MCP tools diff contains no changes
(diff *MCPToolsDiff)
| 823 | |
| 824 | // isEmptyMCPToolsDiff returns true if the MCP tools diff contains no changes |
| 825 | func isEmptyMCPToolsDiff(diff *MCPToolsDiff) bool { |
| 826 | return len(diff.NewTools) == 0 && |
| 827 | len(diff.RemovedTools) == 0 && |
| 828 | len(diff.ChangedTools) == 0 |
| 829 | } |
| 830 | |
| 831 | // isEmptyAuditDiff returns true if the audit diff contains no changes across all sections |
| 832 | func isEmptyAuditDiff(diff *AuditDiff) bool { |
no outgoing calls