db-rest/lib/all-stations.js

12 lines
220 B
JavaScript
Raw Normal View History

2017-11-04 21:07:20 +01:00
'use strict'
const file = require.resolve('db-stations/full.ndjson')
const allStations = (req, res, next) => {
res.sendFile(file, {
maxAge: 10 * 24 * 3600 * 1000 // 10 days
}, next)
}
module.exports = allStations