BytesValue is a convenience wrapper for a byte slice, usable as BytesValue{[]byte{1,2,3}}
| 59 | // BytesValue is a convenience wrapper for a byte slice, usable as |
| 60 | // BytesValue{[]byte{1,2,3}} |
| 61 | type BytesValue struct { |
| 62 | B []byte |
| 63 | } |
| 64 | |
| 65 | func (bv BytesValue) ToAV() dynamodb.AttributeValue { |
| 66 | return dynamodb.AttributeValue{B: bv.B} |
nothing calls this directly
no outgoing calls
no test coverage detected