1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-06-17 00:17:40 +02:00

initial code import

This commit is contained in:
Jehiah Czebotar
2012-12-10 20:59:23 -05:00
parent c6f07d54d7
commit fb636396a3
9 changed files with 635 additions and 8 deletions

16
string_array.go Normal file
View File

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