umami/src/app/api/version/route.ts
2025-01-21 19:10:34 -08:00

6 lines
164 B
TypeScript

import { json } from 'lib/response';
import { CURRENT_VERSION } from 'lib/constants';
export async function GET() {
return json({ version: CURRENT_VERSION });
}