-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
39 lines (38 loc) · 864 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const getAuthUrl = require('./getAuthUrls')
const getToken = require('./getToken')
const getDetails = require('./getDetails')
const {
setCredentials
} = require('./setCredentials')
const amazon = require('./amazon')
const discord = require('./discord')
const facebook = require('./facebook')
const github = require('./github')
const google = require('./google')
const microsoft = require('./microsoft')
const {
runAuthServer
} = require('./runAuthServer')
const {
expressApp
} = require('./runAuthServer')
const getApi = require('./getApi')
const postApi = require('./postApi')
const demoApp = require('./demoApp')
module.exports = {
getAuthUrl,
getToken,
getDetails,
setCredentials,
amazon,
discord,
facebook,
github,
google,
microsoft,
runAuthServer,
getApi,
postApi,
demoApp,
expressApp
}