CompositeRedactor 组合脱敏器
| 197 | |
| 198 | // CompositeRedactor 组合脱敏器 |
| 199 | type CompositeRedactor struct { |
| 200 | redactors []ContentRedactor |
| 201 | } |
| 202 | |
| 203 | // NewCompositeRedactor 创建组合脱敏器 |
| 204 | func NewCompositeRedactor(redactors ...ContentRedactor) *CompositeRedactor { |
nothing calls this directly
no outgoing calls
no test coverage detected