internal/identity: implement github provider support (#582)

Co-authored-by: Bobby DeSimone <bobbydesimone@gmail.com>
This commit is contained in:
Ogundele Olumide 2020-04-10 18:48:14 +01:00 committed by GitHub
parent 789068e27a
commit ae4204d42b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 294 additions and 2 deletions

View file

@ -0,0 +1,7 @@
package identity
import "errors"
// ErrRevokeNotImplemented error type when Revoke method is not implemented
// by an identity provider
var ErrRevokeNotImplemented = errors.New("internal/identity: revoke not implemented")