core-edge / src /app /api /route.ts
dragxd's picture
Initial commit: VoltEdge project
3353b25
import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({
success: true,
message: 'Welcome to the VoltEdge API',
version: 'v1',
documentation: '/docs',
endpoints: {
v1: '/api/v1'
}
});
}