jam-my-stack/src/index.js

24 lines
535 B
JavaScript
Raw Normal View History

2021-03-09 20:28:52 +01:00
const { parseMastoFeed } = require('./mastodon/feed-parser')
const { widgetify } = require('./goodreads/widgetify.js')
const { buildIndex } = require('./lunr/index-builder.js')
const { howlong } = require('./howlongtobeat/howlong.js')
2021-03-09 21:24:22 +01:00
const { getWebmentions } = require('./webmention/get.js')
module.exports = {
2021-03-05 11:22:27 +01:00
mastodon: {
parseFeed: parseMastoFeed
},
goodreads: {
createWidget: widgetify
},
lunr: {
buildIndex: buildIndex
},
howlongtobeat: {
howlong: howlong
2021-03-09 21:24:22 +01:00
},
webmention: {
getWebmentions: getWebmentions
2021-03-05 11:22:27 +01:00
}
};