| 33 | ) |
| 34 | |
| 35 | type ExternalAuth struct { |
| 36 | modName string |
| 37 | instName string |
| 38 | helperPath string |
| 39 | |
| 40 | perDomain bool |
| 41 | domains []string |
| 42 | |
| 43 | log *log.Logger |
| 44 | } |
| 45 | |
| 46 | func New(c *container.C, modName, instName string) (module.Module, error) { |
| 47 | ea := &ExternalAuth{ |
nothing calls this directly
no outgoing calls
no test coverage detected