Newer
Older
taehui / taehui-fe / src / app / www / comment / latest / route.ts
@Taehui Taehui on 17 Mar 199 bytes 2024-03-17 오후 11:29
import logIP from "@/app/www/mws/logIP";
import { getLatestComments } from "@/app/www/systems/comment";

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