diff --git a/src/app/api/version/route.ts b/src/app/api/version/route.ts deleted file mode 100644 index 275a4118..00000000 --- a/src/app/api/version/route.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { json } from '@/lib/response'; -import { CURRENT_VERSION } from '@/lib/constants'; - -export async function GET() { - return json({ version: CURRENT_VERSION }); -}