Kekkai/server/routes/home.js
Redume a697efbbd4
Some checks failed
Create and publish a Docker image / build-and-push-server (push) Has been cancelled
Create and publish a Docker image / build-and-push-chart (push) Has been cancelled
Create and publish a Docker image / build-and-push-CR (push) Has been cancelled
Сделал хоум роут с hello world и ссылкой на доку
2024-10-12 21:13:41 +03:00

8 lines
No EOL
264 B
JavaScript

module.exports = async function getRateRoute(fastify) {
fastify.get('/', async function (req, res) {
return res.status(200).send({
message: 'Hello World!',
documentation: 'https://github.com/Redume/Kekkai/wiki/'
})
});
}