()
| 16 | const modName = "auth.netauth" |
| 17 | |
| 18 | func init() { |
| 19 | var _ module.PlainAuth = &Auth{} |
| 20 | var _ module.Table = &Auth{} |
| 21 | modules.Register(modName, New) |
| 22 | modules.Register("table.netauth", New) |
| 23 | } |
| 24 | |
| 25 | // Auth binds all methods related to the NetAuth client library. |
| 26 | type Auth struct { |
nothing calls this directly
no test coverage detected