Add fallback authentication through Kerberos
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
nemunaire 2021-09-22 17:02:30 +02:00
commit 9807eeec1a
8 changed files with 132 additions and 5 deletions

16
flag.go Normal file
View file

@ -0,0 +1,16 @@
package main
import (
"fmt"
)
type arrayFlags []string
func (i *arrayFlags) String() string {
return fmt.Sprintf("%v", *i)
}
func (i *arrayFlags) Set(value string) error {
*i = append(*i, value)
return nil
}