mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
6 lines
164 B
TypeScript
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 });
|
|
}
|