format everything in zed

This commit is contained in:
2025-10-27 18:20:34 +08:00
parent 99c58217c9
commit 4529c58aad
34 changed files with 1927 additions and 1609 deletions

View File

@@ -2,8 +2,11 @@ import { NextRequest, NextResponse } from "next/server";
export async function GET(request: NextRequest) {
const url = request.url;
return NextResponse.json({
message: "Hello World",
url: url
}, { status: 200 });
return NextResponse.json(
{
message: "Hello World",
url: url,
},
{ status: 200 },
);
}