mtfosbot/libs/api-action/index.js

12 lines
224 B
JavaScript
Raw Permalink Normal View History

2018-08-12 15:31:09 +00:00
const twitchPublic = require('./twitch-public')
2018-06-28 09:37:33 +00:00
const line = require('./line')
2018-07-06 09:57:49 +00:00
const google = require('./google')
2018-08-12 15:31:09 +00:00
const twitchNew = require('./twitch-new')
2018-06-28 09:37:33 +00:00
module.exports = {
2018-08-12 15:31:09 +00:00
twitchPublic,
2018-07-06 09:57:49 +00:00
line,
2018-08-12 15:31:09 +00:00
google,
twitchNew
2018-06-28 09:37:33 +00:00
}