8 lines
277 B
TypeScript
8 lines
277 B
TypeScript
|
|
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})
|
||
|
|
}
|