(context.Context, string, string, string)
| 94 | // oauth functionality. |
| 95 | type OAuthDatastore interface { |
| 96 | GetIDForRemoteUser(context.Context, string, string, string) (int64, error) |
| 97 | RecordRemoteUserID(context.Context, int64, string, string, string, string) error |
| 98 | ValidateOAuthState(context.Context, string) (string, string, int64, string, error) |
| 99 | GenerateOAuthState(context.Context, string, string, int64, string) (string, error) |