1
0
mirror of https://github.com/comatory/fb2iCal synced 2025-06-05 22:09:25 +02:00

move app routes to separate directory for better composition in

preparation of firebase integration
This commit is contained in:
Ondřej Synáček
2020-11-01 13:08:48 +01:00
parent c7175382b6
commit 0ad6bba142
4 changed files with 78 additions and 45 deletions

9
lib/routes/index.js Normal file
View File

@ -0,0 +1,9 @@
const { error, notFound } = require('./error')
const { download, downloadHTML } = require('./download')
module.exports = {
error,
notFound,
download,
downloadHTML,
}