package dynamo import ( "time" "context" "log" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/config" "github.com/guregu/dynamo/v2" ) // Use struct tags much like the standard JSON library, // you can embed anonymous structs too! type widget struct { UserID int // Hash key, a.k.a. partition key Time time.Time // Range key, a.k.a. sort key Msg string `dynamo:"Message"` // Change n