This package is a DynamoDB implementation of a fsm.Store.
When using this store, you must set four environment variables:
DYNAMO_REGION=""
DYNAMO_ACCESS_KEY_ID=""
DYNAMO_SECRET_ACCESS_KEY=""
DYNAMO_TABLE_NAME=""
Note: The environment variables above are assumed to be set in this example code:
package main
import "github.com/fsm/dynamo-store"
func main() {
store := dynamostore.New()
// ...
}