Diff compares two auditable resources and produces a Map of the changed values.
(a Auditor, left, right T)
| 62 | // Diff compares two auditable resources and produces a Map of the changed |
| 63 | // values. |
| 64 | func Diff[T Auditable](a Auditor, left, right T) Map { return a.diff(left, right) } |
| 65 | |
| 66 | // Differ is used so the enterprise version can implement the diff function in |
| 67 | // the Auditor feature interface. Only types in the same package as the |
no test coverage detected