Skip to content
This repository has been archived by the owner on Oct 7, 2021. It is now read-only.

Added AWS DynamoDB support #166

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions db/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ func NewToddDB(cfg config.Config) (DatabasePackage, error) {
switch cfg.DB.Plugin {
case "etcd":
tdb = newEtcdDB(cfg)
case "dynamodb":
tdb = newDynamoDB(cfg)
default:
return nil, ErrInvalidDBPlugin
}
Expand Down
Loading