Skip to content

Commit edffd9b

Browse files
committed
fix: 構造体名の変更に伴う修正
1 parent 13958bf commit edffd9b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/inserter/js_inserter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func (j *JSInserter) Execute(ctx context.Context, cn, path string) error {
6969
return nil
7070
}
7171

72-
func (j *JSInserter) CreateItem(ctx context.Context, path []string, items []JsonModelItem, collectionIndexes []int) error {
72+
func (j *JSInserter) CreateItem(ctx context.Context, path []string, items []JSONModelItem, collectionIndexes []int) error {
7373
for idx, parentItem := range items {
7474
nowIndexes := append(collectionIndexes, idx)
7575
docPath := strings.Join(path, "/")

pkg/inserter/json_inserter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func (j *JSONInserter) Execute(ctx context.Context, cn, path string) error {
4545
return nil
4646
}
4747

48-
func (j *JSONInserter) CreateItem(ctx context.Context, path []string, items []JsonModelItem, collectionIndexes []int) error {
48+
func (j *JSONInserter) CreateItem(ctx context.Context, path []string, items []JSONModelItem, collectionIndexes []int) error {
4949
for idx, parentItem := range items {
5050
nowIndexes := append(collectionIndexes, idx)
5151
docPath := strings.Join(path, "/")

0 commit comments

Comments
 (0)