| 12 | ) |
| 13 | |
| 14 | type UserService struct { |
| 15 | store store.UserStore |
| 16 | sessionStore store.SessionStore |
| 17 | oAuthStore store.OAuthStore |
| 18 | metrics einterfaces.MetricsInterface |
| 19 | cluster einterfaces.ClusterInterface |
| 20 | config func() *model.Config |
| 21 | license func() *model.License |
| 22 | } |
| 23 | |
| 24 | // ServiceConfig is used to initialize the UserService. |
| 25 | type ServiceConfig struct { |
nothing calls this directly
no outgoing calls
no test coverage detected