lora-studio / src /routes /+layout.server.ts
enzostvs's picture
enzostvs HF staff
refacto models + community
eb29a95
raw
history blame contribute delete
No virus
227 Bytes
export async function load({ fetch }) {
const response = await fetch("/api/@me", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
})
const user = await response.json()
return { user }
}