github.com/vmware/govmomi@v0.51.0/cli/flags/list.go (about)

     1  // © Broadcom. All Rights Reserved.
     2  // The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
     3  // SPDX-License-Identifier: Apache-2.0
     4  
     5  package flags
     6  
     7  import "fmt"
     8  
     9  type StringList []string
    10  
    11  func (l *StringList) String() string {
    12  	return fmt.Sprint(*l)
    13  }
    14  
    15  func (l *StringList) Set(value string) error {
    16  	*l = append(*l, value)
    17  	return nil
    18  }