Kekkai/server/routes/home.js

8 lines
264 B
JavaScript
Raw Normal View History

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/'
})
});
}