proxyraye-nextjs/src/app/api/info/route.ts

7 lines
209 B
TypeScript

import { getAppVersion } from '@/utils/info/version'
import { NextResponse } from 'next/server'
export async function GET() {
const version = await getAppVersion()
return NextResponse.json({ version })
}