mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-27 20:29:39 +02:00
12 lines
276 B
JavaScript
12 lines
276 B
JavaScript
const fastify = require("fastify")();
|
|||
|
|||
fastify.get("/echo", async function echo(request, reply) {
|
|||
reply.send(request.query.data);
|
|||
});
|
|||
|
|||
fastify.get("/go", async function go(request, reply) {
|
|||
return reply.redirect(request.query.next);
|
|||
});
|
|||
|
|||
module.exports = { fastify };
|