mirror of
https://github.com/yldio/copilot.git
synced 2024-11-11 05:40:11 +02:00
19 lines
350 B
JavaScript
19 lines
350 B
JavaScript
|
const Pkg = require('../../package.json');
|
||
|
|
||
|
const internals = {
|
||
|
response: {
|
||
|
version: Pkg.version
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = (server) => {
|
||
|
server.route({
|
||
|
method: 'GET',
|
||
|
path: '/ops/version',
|
||
|
config: {
|
||
|
description: 'Returns the version of the server',
|
||
|
handler: (request, reply) => reply(internals.response)
|
||
|
}
|
||
|
});
|
||
|
};
|