OAuthDatastoreProvider provides a minimal interface of data store, config, and session store for use with the oauth handlers.
| 85 | // OAuthDatastoreProvider provides a minimal interface of data store, config, |
| 86 | // and session store for use with the oauth handlers. |
| 87 | type OAuthDatastoreProvider interface { |
| 88 | DB() OAuthDatastore |
| 89 | Config() *config.Config |
| 90 | SessionStore() sessions.Store |
| 91 | } |
| 92 | |
| 93 | // OAuthDatastore provides a minimal interface of data store methods used in |
| 94 | // oauth functionality. |
no outgoing calls
no test coverage detected