12 lines
333 B
JavaScript
12 lines
333 B
JavaScript
|
import authorizationCode from './authorizationCode'
|
||
|
import clientCredentials from './clientCredentials'
|
||
|
import password from './password'
|
||
|
import refreshToken from './refreshToken'
|
||
|
|
||
|
module.exports = {
|
||
|
authorizationCode: authorizationCode,
|
||
|
clientCredentials: clientCredentials,
|
||
|
password: password,
|
||
|
refreshToken: refreshToken
|
||
|
}
|