1
0
mirror of https://github.com/beego/bee.git synced 2024-06-01 09:13:27 +00:00
bee/utils/list_opts.go

15 lines
214 B
Go
Raw Normal View History

package utils
import "fmt"
type ListOpts []string
func (opts *ListOpts) String() string {
return fmt.Sprint(*opts)
}
func (opts *ListOpts) Set(value string) error {
*opts = append(*opts, value)
return nil
}