feat(server): Update link in home route for docs

This commit is contained in:
Данил 2024-11-08 15:23:55 +03:00
parent 7f288cbaae
commit 0ae8fe3dea

View file

@ -2,7 +2,7 @@ module.exports = async function getRateRoute(fastify) {
fastify.get('/', async function (req, res) { fastify.get('/', async function (req, res) {
return res.status(200).send({ return res.status(200).send({
message: 'Hello World!', message: 'Hello World!',
documentation: 'https://github.com/Redume/Kekkai/wiki/', documentation: 'https://kekkai-docs.redume.su/',
}); });
}); });
}; };