mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-24 22:31:15 +00:00
11 lines
166 B
JavaScript
11 lines
166 B
JavaScript
'use strict';
|
|
|
|
module.exports = route;
|
|
|
|
// Route definition
|
|
function route (app) {
|
|
app.express.get('/new', function (req, res) {
|
|
res.send('Create a task');
|
|
});
|
|
}
|