From fc1a8c66320bd0f73ee097c5482ecaff6d5a5c21 Mon Sep 17 00:00:00 2001 From: omkar-dev Date: Mon, 20 Nov 2023 13:58:50 +1100 Subject: [PATCH] fix: update interface value Signed-off-by: omkar-till --- interface.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface.go b/interface.go index 341752c..ebbcf39 100644 --- a/interface.go +++ b/interface.go @@ -29,7 +29,7 @@ type WriteAPI interface { type TransactionAPI interface { TransactPutItems(ctx context.Context, items []*TransactPutItemsInput) error - TransactItems(ctx context.Context, items []*TransactPutItemsInput) error + TransactItems(ctx context.Context, input []types.TransactWriteItem) error } type ReadAPI interface {