diff --git a/lib/index.js b/lib/index.js index b025669..b48a3ac 100644 --- a/lib/index.js +++ b/lib/index.js @@ -2,7 +2,9 @@ var Strategy = require('./strategy') , AuthorizationError = require('./errors/authorizationerror') , TokenError = require('./errors/tokenerror') - , InternalOAuthError = require('./errors/internaloautherror'); + , InternalOAuthError = require('./errors/internaloautherror') + , SessionStore = require('./state/session') + , NullStore = require('./state/null'); // Expose Strategy. @@ -14,3 +16,6 @@ exports.Strategy = Strategy; exports.AuthorizationError = AuthorizationError; exports.TokenError = TokenError; exports.InternalOAuthError = InternalOAuthError; + +exports.SessionStore = SessionStore; +exports.NullStore = NullStore;