Files
Beyhan Oğur 2a5b661443 first commit
2026-04-26 21:46:42 +03:00

7 lines
207 B
TypeScript

import { NextRequest } from "next/server"
import { handleImageProxyRequest } from "@/lib/api-proxy"
export async function POST(req: NextRequest) {
return handleImageProxyRequest(req, "/admin/heroes")
}