katstash/src/routes/+page.server.ts
Sphericalkat 0e4eeb5f19
feat: implement file upload and fetching
Signed-off-by: Sphericalkat <me@kat.bio>
2024-06-17 18:40:45 +05:30

7 lines
105 B
TypeScript

export const actions = {
default: async (event) => {
// upload file
console.log(event);
}
};