mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
12 lines
197 B
JavaScript
12 lines
197 B
JavaScript
module.exports = (server) => {
|
|
server.route({
|
|
method: 'GET',
|
|
path: '/ping',
|
|
config: {
|
|
auth: false,
|
|
},
|
|
handler: (request, reply) => {
|
|
reply("pong")
|
|
},
|
|
});
|
|
};
|