1
0
mirror of https://github.com/comatory/fb2iCal synced 2025-06-05 22:09:25 +02:00
Files
Facebook-Events-iCal-Converter/lib/routes/index.js
Ondřej Synáček 0ad6bba142 move app routes to separate directory for better composition in
preparation of firebase integration
2020-11-01 13:08:48 +01:00

10 lines
175 B
JavaScript

const { error, notFound } = require('./error')
const { download, downloadHTML } = require('./download')
module.exports = {
error,
notFound,
download,
downloadHTML,
}