Skip to content

fsm/dynamo-store

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FSM

Dynamo Store

This package is a DynamoDB implementation of a fsm.Store.

Environment Variables

When using this store, you must set four environment variables:

DYNAMO_REGION=""
DYNAMO_ACCESS_KEY_ID=""
DYNAMO_SECRET_ACCESS_KEY=""
DYNAMO_TABLE_NAME=""

Getting Started

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()
    // ...
}

License

MIT