jam-my-stack/src/index.js

20 lines
415 B
JavaScript
Raw Normal View History

2021-03-04 19:32:35 +01:00
const { parseMastoFeed } = require('./masto-feed-parser')
const { widgetify } = require('./goodreads-widgetify.js')
2021-03-04 21:06:28 +01:00
const { buildIndex } = require('./lunr-index-builder.js')
const { howlong } = require('./howlong-tobeat.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
}
};