remove unused route

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-07-01 22:10:55 +02:00
parent 76dbc0cc02
commit 0cb87b0279

View File

@@ -55,11 +55,6 @@ const eventRouter: FastifyPluginCallback = (fastify, opts, done) => {
url: '/',
handler: controller.postEvent,
});
fastify.route({
method: 'GET',
url: '/',
handler: controller.postEvent,
});
done();
};