We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ab200c + 19e662d commit 6cdf356Copy full SHA for 6cdf356
1 file changed
sdks/go/pkg/beam/options/jobopts/stringSlice.go
@@ -42,3 +42,8 @@ func (s *stringSlice) Set(value string) error {
42
*s = append(*s, value)
43
return nil
44
}
45
+
46
+// Get returns the instance itself.
47
+func (s stringSlice) Get() interface{} {
48
+ return s
49
+}
0 commit comments