1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-01-13 21:24:06 +00:00
Xray-core/common/cmdarg/cmdarg.go
2020-11-25 19:01:53 +08:00

17 lines
298 B
Go

package cmdarg
import "strings"
// Arg is used by flag to accept multiple argument.
type Arg []string
func (c *Arg) String() string {
return strings.Join([]string(*c), " ")
}
// Set is the method flag package calls
func (c *Arg) Set(value string) error {
*c = append(*c, value)
return nil
}