mirror of https://github.com/qwqdanchun/ant.git
11 lines
318 B
JavaScript
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');
|
|
})
|
|
} |