UNPKG

@withub/egg-oauth2-server

Version:

koa-oauth-server(node-oauth2-server) plugin for egg

15 lines (12 loc) 249 B
'use strict'; module.exports = config => { const exports = {}; /** * @see https://www.npmjs.com/package/oauth2-server */ exports.oAuth2Server = { debug: config.env === 'local', grants: [ 'password' ], }; return exports; };