Skip to content

Commit

Permalink
Merge pull request #2179 from armsnyder/add-missing-set-val
Browse files Browse the repository at this point in the history
feat: add some missing SetVal methods
  • Loading branch information
vmihailenco committed Aug 8, 2022
2 parents 084c0c8 + 3f8edc6 commit b4a0726
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions command.go
Original file line number Diff line number Diff line change
Expand Up @@ -1093,6 +1093,10 @@ func NewKeyValueSliceCmd(ctx context.Context, args ...interface{}) *KeyValueSlic
}
}

func (cmd *KeyValueSliceCmd) SetVal(val []KeyValue) {
cmd.val = val
}

func (cmd *KeyValueSliceCmd) Val() []KeyValue {
return cmd.val
}
Expand Down Expand Up @@ -3117,6 +3121,10 @@ func NewGeoSearchLocationCmd(
}
}

func (cmd *GeoSearchLocationCmd) SetVal(val []GeoLocation) {
cmd.val = val
}

func (cmd *GeoSearchLocationCmd) Val() []GeoLocation {
return cmd.val
}
Expand Down Expand Up @@ -3573,6 +3581,10 @@ func NewMapStringInterfaceCmd(ctx context.Context, args ...interface{}) *MapStri
}
}

func (cmd *MapStringInterfaceCmd) SetVal(val map[string]interface{}) {
cmd.val = val
}

func (cmd *MapStringInterfaceCmd) Val() map[string]interface{} {
return cmd.val
}
Expand Down Expand Up @@ -3633,6 +3645,10 @@ func NewMapStringStringSliceCmd(ctx context.Context, args ...interface{}) *MapSt
}
}

func (cmd *MapStringStringSliceCmd) SetVal(val []map[string]string) {
cmd.val = val
}

func (cmd *MapStringStringSliceCmd) Val() []map[string]string {
return cmd.val
}
Expand Down

0 comments on commit b4a0726

Please sign in to comment.