Store is the combined store of all the individual stores.
| 149 | |
| 150 | // Store is the combined store of all the individual stores. |
| 151 | type Store struct { |
| 152 | TxOptions sql.TxOptions |
| 153 | |
| 154 | *baseStore |
| 155 | |
| 156 | *apiKeyStore |
| 157 | *applicationStore |
| 158 | *clientStore |
| 159 | *contactInfoStore |
| 160 | *emailValidationStore |
| 161 | *endDeviceStore |
| 162 | *entitySearch |
| 163 | *euiStore |
| 164 | *gatewayStore |
| 165 | *invitationStore |
| 166 | *loginTokenStore |
| 167 | *membershipStore |
| 168 | *notificationStore |
| 169 | *oauthStore |
| 170 | *organizationStore |
| 171 | *userBookmarkStore |
| 172 | *userSessionStore |
| 173 | *userStore |
| 174 | } |
| 175 | |
| 176 | const ( |
| 177 | initialDelayOnUnavailable = 50 * time.Millisecond |
nothing calls this directly
no outgoing calls
no test coverage detected