oauth2_proxy/string_array.go

20 lines
393 B
Go
Raw Normal View History

2012-12-11 01:59:23 +00:00
package main
import (
2014-11-09 19:51:10 +00:00
"strings"
2012-12-11 01:59:23 +00:00
)
// StringArray is a type alias for a slice of strings
2012-12-11 01:59:23 +00:00
type StringArray []string
// Set appends a string to the StringArray
2012-12-11 01:59:23 +00:00
func (a *StringArray) Set(s string) error {
*a = append(*a, s)
return nil
}
// String joins elements of the StringArray into a single comma separated string
2012-12-11 01:59:23 +00:00
func (a *StringArray) String() string {
2014-11-09 19:51:10 +00:00
return strings.Join(*a, ",")
2012-12-11 01:59:23 +00:00
}