Files
trading_bot_v3/src/app/route.ts
2025-07-09 10:24:30 +02:00

6 lines
134 B
TypeScript

import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ message: "Hello world!" });
}