9 lines
162 B
JavaScript
9 lines
162 B
JavaScript
'use strict'
|
|
|
|
module.exports = function (fastify, opts, next) {
|
|
fastify.get('/', function (request, reply) {
|
|
reply.send({ root: true });
|
|
});
|
|
|
|
next();
|
|
}
|