| 12 | ) |
| 13 | |
| 14 | type Auth interface { |
| 15 | Validate(ctx context.Context, wr http.ResponseWriter, req *http.Request) (string, bool) |
| 16 | io.Closer |
| 17 | } |
| 18 | |
| 19 | func NewAuth(paramstr string, logger *clog.CondLogger) (Auth, error) { |
| 20 | url, err := url.Parse(paramstr) |
no outgoing calls
no test coverage detected