11 lines
267 B
TypeScript
Raw Permalink Normal View History

2023-08-01 17:50:00 +02:00
import { Handlers } from "$fresh/server.ts";
import { getAllMovies } from "@lib/resource/movies.ts";
import { json } from "@lib/helpers.ts";
export const handler: Handlers = {
async GET() {
const movies = await getAllMovies();
return json(movies);
},
2023-07-30 23:55:51 +02:00
};