2023-04-07 13:49:34 +07:00
|
|
|
import {json} from '@sveltejs/kit'
|
2023-04-07 22:59:53 +07:00
|
|
|
import info from "$lib/data/info.json"
|
2023-04-07 13:49:34 +07:00
|
|
|
import type { RequestHandler } from './$types'
|
|
|
|
|
export const GET: RequestHandler = async () => {
|
2023-04-08 11:27:09 +07:00
|
|
|
return json(info)
|
2023-04-07 13:49:34 +07:00
|
|
|
}
|