flosight-api/lib/api/currency.js

6 lines
119 B
JavaScript

module.exports = function currencyAPI(app) {
app.get('/currency', (req, res) => {
res.send('currency');
});
};