coolify/api/routes/v1/undead.js
2021-03-24 22:11:14 +01:00

6 lines
129 B
JavaScript

module.exports = async function (fastify) {
fastify.get('/', async (request, reply) => {
reply.code(200).send('NO')
})
}