v3.0.0/src/api/routes/version/get.ts

6 lines
188 B
TypeScript

import type { FastifyRequest, FastifyReply } from 'fastify';
export const run = async (req: FastifyRequest, res: FastifyReply) => res.send({
version: process.env.npm_package_version
});