|
module.exports = [
|
|
{
|
|
url: '/api/report',
|
|
cb: require('./report')
|
|
},
|
|
{
|
|
url: '/api/email',
|
|
cb: require('./email')
|
|
},
|
|
{
|
|
url: '/api/csv',
|
|
cb: require('./csv')
|
|
},
|
|
{
|
|
url: '/api/closure',
|
|
cb: require('./closure')
|
|
},
|
|
{
|
|
url: '/api/notify',
|
|
cb: require('./notify')
|
|
}
|
|
];
|