12 lines
166 B
JavaScript
12 lines
166 B
JavaScript
module.exports = {
|
|
routes: [
|
|
{
|
|
method: 'GET',
|
|
path: '/stats',
|
|
handler: 'stats.count',
|
|
config: {
|
|
auth: false,
|
|
}
|
|
}
|
|
]
|
|
} |