Newer
Older
taehui / taehui-fe / src / app / www / file / [fileName] / hit / route.ts
@Taehui Taehui on 17 Mar 219 bytes 2024-03-18 오전 12:51
import logIP from "@/app/www/media/logIP";
import { getFileHit } from "@/app/www/logic/file";

export const GET = logIP(async (req, { params: { fileName } }) => {
  return Response.json(await getFileHit(fileName));
});