thomaswilson-sveltekit/src/routes/api/sunrise-sunset-photos/+server.ts

11 lines
208 B
TypeScript
Raw Normal View History

import type { LoadEvent } from '@sveltejs/kit'
export const GET = async (_event: LoadEvent) => {
return Promise.resolve({
status: 200,
body: {
photos: [],
},
})
}