Kekkai/server/routes/home.js

9 lines
272 B
JavaScript
Raw Normal View History

module.exports = async function getRateRoute(fastify) {
fastify.get('/', async function (req, res) {
2024-10-21 20:39:06 +03:00
return res.status(200).send({
message: 'Hello World!',
documentation: 'https://github.com/Redume/Kekkai/wiki/',
});
});
2024-10-21 20:39:06 +03:00
};