peridot/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/fields_go_old.go

16 lines
297 B
Go
Raw Normal View History

2022-07-07 20:11:50 +00:00
// +build !go1.9
package dynamodbattribute
var fieldCache fieldCacher
type fieldCacher struct{}
func (c fieldCacher) Load(t interface{}) (*cachedFields, bool) {
return nil, false
}
func (c fieldCacher) LoadOrStore(t interface{}, fs *cachedFields) (*cachedFields, bool) {
return fs, false
}