Skip to content

Commit

Permalink
chore: string input
Browse files Browse the repository at this point in the history
  • Loading branch information
vankongv committed Sep 10, 2024
1 parent 2a9f50c commit 44042fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type WriteAPI interface {
// Create or update given item in DynamoDB. Must implemenmt DynamoRecord interface.
// DynamoRecord.GetKeys will be called to get values for parition and sort keys.
PutItem(ctx context.Context, pk Attribute, sk Attribute, item interface{}) error
DeleteItem(ctx context.Context, pk Attribute, sk Attribute) error
DeleteItem(ctx context.Context, pk string, sk string) error
}

type TransactionAPI interface {
Expand Down

0 comments on commit 44042fc

Please sign in to comment.