Module holds config of driver package
| 55 | |
| 56 | // Module holds config of driver package |
| 57 | type Module struct { |
| 58 | driver Interface |
| 59 | metricHook model.ServiceCallMetricHook |
| 60 | } |
| 61 | |
| 62 | // New creates a new instance of the driver module |
| 63 | func New(auth *auth.Module, c *Config, hook model.ServiceCallMetricHook) (*Module, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected