hrms-exam/cms/src/routes/api/info/+server.ts

8 lines
277 B
TypeScript
Raw Normal View History

import ver from "$lib/ver.json"
import {json} from '@sveltejs/kit'
import type { RequestHandler } from './$types'
export const GET: RequestHandler = async () => {
const version = ver.version
const builddate = ver.builddate
return json({version,builddate})
}