From 9ffe9a377b9e96f0b19ddff60d57734f661c7aeb Mon Sep 17 00:00:00 2001 From: Laurent Le Houerou Date: Tue, 16 Apr 2024 15:11:11 +0400 Subject: [PATCH] correct package declaration --- mutations/buy_shop_item.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mutations/buy_shop_item.go b/mutations/buy_shop_item.go index cbdbe18..9c78095 100644 --- a/mutations/buy_shop_item.go +++ b/mutations/buy_shop_item.go @@ -1,7 +1,5 @@ package mutations -package mutations - import ( "context" @@ -12,8 +10,8 @@ import ( ) type buyShopItemInput struct { - ClientMutationId string `json:"clientMutationId"` - ShopItemId gql.ID `json:"shopItemId"` + ClientMutationId string `json:"clientMutationId"` + ShopItemId gql.ID `json:"shopItemId"` } type BuyShopItemParams struct {