| 80 | } |
| 81 | |
| 82 | type CustomSerializer struct { |
| 83 | prefix []byte |
| 84 | } |
| 85 | |
| 86 | func NewCustomSerializer(prefix string) *CustomSerializer { |
| 87 | return &CustomSerializer{prefix: []byte(prefix)} |
nothing calls this directly
no outgoing calls
no test coverage detected