Auth binds all methods related to the NetAuth client library.
| 24 | |
| 25 | // Auth binds all methods related to the NetAuth client library. |
| 26 | type Auth struct { |
| 27 | instName string |
| 28 | mustGroup string |
| 29 | |
| 30 | nacl *netauth.Client |
| 31 | |
| 32 | log *log.Logger |
| 33 | } |
| 34 | |
| 35 | // New creates a new instance of the NetAuth module. |
| 36 | func New(c *container.C, modName, instName string) (module.Module, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected