Newer
Older
taehui / taehui-fe / src / app / www / comment / latest / route.ts
@Taehui Taehui on 17 Mar 199 bytes 2024-03-18 오전 12:51
import logIP from "@/app/www/media/logIP";
import { getLatestComments } from "@/app/www/logic/comment";

export const GET = logIP(async () => {
  return Response.json(await getLatestComments());
});