jam-my-stack/src/index.js

20 lines
425 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')
module.exports = {
2021-03-05 11:22:27 +01:00
mastodon: {
parseFeed: parseMastoFeed
},
goodreads: {
createWidget: widgetify
},
lunr: {
buildIndex: buildIndex
},
howlongtobeat: {
howlong: howlong
2021-03-05 11:22:27 +01:00
}
};