fix(redis-api): change port

This commit is contained in:
xHyroM 2023-04-09 15:55:39 +02:00
parent 7b9b61b2b7
commit 857510e42e
No known key found for this signature in database
GPG key ID: BE0423F386C436AA

View file

@ -42,4 +42,4 @@ fastify.post("/flush", async (request, reply) => {
reply.send(await redis.flushdb()); reply.send(await redis.flushdb());
}); });
fastify.listen({ port: 51253 }, console.log); fastify.listen({ port: 51254 }, console.log);