1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-06-10 13:09:11 -04:00

Revert "multiple config"

This commit is contained in:
Kslr
2020-01-02 01:23:56 +08:00
committed by GitHub
parent b63bc067bb
commit fdbec9a141
18 changed files with 129 additions and 497 deletions

View File

@@ -1,16 +0,0 @@
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
}