oauth2_proxy/string_array.go

17 lines
204 B
Go
Raw Normal View History

2012-12-11 01:59:23 +00:00
package main
import (
"fmt"
)
type StringArray []string
func (a *StringArray) Set(s string) error {
*a = append(*a, s)
return nil
}
func (a *StringArray) String() string {
return fmt.Sprint(*a)
}