2023-10-13 09:23:11 -04:00
|
|
|
import { NextResponse } from "next/server";
|
|
|
|
|
|
|
|
function handler() {
|
|
|
|
return NextResponse.json({
|
|
|
|
names: {
|
|
|
|
zach: "17717ad4d20e2a425cda0a2195624a0a4a73c4f6975f16b1593fc87fa46f2d58",
|
|
|
|
_: "17717ad4d20e2a425cda0a2195624a0a4a73c4f6975f16b1593fc87fa46f2d58",
|
|
|
|
},
|
2023-10-25 08:47:42 -04:00
|
|
|
}).headers.set("Content-Type", "application/json");
|
2023-10-13 09:23:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export { handler as GET, handler as POST };
|