mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
7 lines
176 B
TypeScript
7 lines
176 B
TypeScript
import { data } from "~/data/data"
|
|
|
|
export async function GET() {
|
|
const resume = await data.profile.getResumeJson();
|
|
return new Response(JSON.stringify(resume, null, 2))
|
|
}
|