mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
clarify array_flag.go
This commit is contained in:
parent
b9833aa604
commit
eb1d22c6a3
@ -1,7 +1,14 @@
|
||||
package config
|
||||
|
||||
import "strings"
|
||||
import (
|
||||
"flag"
|
||||
"strings"
|
||||
)
|
||||
|
||||
var _ flag.Value = (*ArrayFlags)(nil)
|
||||
|
||||
//ArrayFlags implements the flag/Value interface
|
||||
//allowing to set multiple string flags with the same name
|
||||
type ArrayFlags []string
|
||||
|
||||
func (i *ArrayFlags) String() string {
|
||||
|
Loading…
Reference in New Issue
Block a user