github.com/smugmug/godynamo@v0.0.0-20151122084750-7913028f6623/types/attributestoget/attributestoget.go (about) 1 // AttributesToGet is used in GetItem etc 2 package attributestoget 3 4 type AttributesToGet []string 5 6 type attributesToGet AttributesToGet 7 8 // AttributesToGet is already a reference type 9 func NewAttributesToGet() AttributesToGet { 10 s := make([]string, 0) 11 return s 12 }