diff options
Diffstat (limited to 'internal/oauth/clientstore.go')
-rw-r--r-- | internal/oauth/clientstore.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/oauth/clientstore.go b/internal/oauth/clientstore.go index 998f6784e..2e7e0ae88 100644 --- a/internal/oauth/clientstore.go +++ b/internal/oauth/clientstore.go @@ -27,11 +27,11 @@ import ( ) type clientStore struct { - db db.DB + db db.Basic } // NewClientStore returns an implementation of the oauth2 ClientStore interface, using the given db as a storage backend. -func NewClientStore(db db.DB) oauth2.ClientStore { +func NewClientStore(db db.Basic) oauth2.ClientStore { pts := &clientStore{ db: db, } |