jam-my-stack/src/index.js

10 lines
293 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')
module.exports = {
2021-03-04 21:06:28 +01:00
mastodonParseFeed: parseMastoFeed,
goodreadsWidgetify: widgetify,
lunrBuildIndex: buildIndex
};