Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 857 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 857 Bytes

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