hrms-exam/cms/src/routes/api/info/+server.ts
2023-04-08 11:27:09 +07:00

6 lines
No EOL
198 B
TypeScript

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