MCPcopy Create free account
hub / github.com/dbProjectRED/redimo.go / StringValue

Struct StringValue

values.go:31–33  ·  view source on GitHub ↗

StringValue is a convenience value wrapper for a string, usable as StringValue{"hello"}

Source from the content-addressed store, hash-verified

29// StringValue is a convenience value wrapper for a string, usable as
30// StringValue{"hello"}
31type StringValue struct {
32 S string
33}
34
35func (sv StringValue) ToAV() dynamodb.AttributeValue {
36 return dynamodb.AttributeValue{S: aws.String(sv.S)}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected