mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 20:51:25 +03:00
8 lines
No EOL
264 B
JavaScript
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/'
|
|
})
|
|
});
|
|
} |