enzostvs's picture
enzostvs HF staff
my generations page added
7b25d55
raw
history blame
235 Bytes
export async function load({ fetch }) {
const response = await fetch("/api/@me/generations", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
})
const data = await response.json()
return data
}