package utilities

import (
	
	
)

// flagInterface is a cut down interface to `flag`
type flagInterface interface {
	Var(value flag.Value, name string, usage string)
}

// StringArrayFlag defines a flag with the specified name and usage string.
// The return value is the address of a `StringArrayFlags` variable that stores the repeated values of the flag.
func ( flagInterface,  string,  string) *StringArrayFlags {
	 := &StringArrayFlags{}
	.Var(, , )
	return 
}

// StringArrayFlags is a wrapper of `[]string` to provider an interface for `flag.Var`
type StringArrayFlags []string

// String returns a string representation of `StringArrayFlags`
func ( *StringArrayFlags) () string {
	return strings.Join(*, ",")
}

// Set appends a value to `StringArrayFlags`
func ( *StringArrayFlags) ( string) error {
	* = append(*, )
	return nil
}