ant/web/addons/ant.bmenu/route.js

11 lines
318 B
JavaScript

module.exports = function(app, db, fc) {
var path = '/addons/ant.bmenu/';
app.route(path + 'client.js')
.get(function(req, res) {
fc.sendFile(req, res, __dirname + '/client.min.js');
})
app.route(path + 'client.css')
.get(function(req, res) {
fc.sendFile(req, res, __dirname + '/client.min.css');
})
}