core-edge / src /app /api /v1 /route.ts
dragxd's picture
Initial commit: VoltEdge project
3353b25
raw
history blame contribute delete
430 Bytes
import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({
success: true,
version: 'v1.0.0',
status: 'stable',
documentation: '/docs',
endpoints: {
upload: '/api/v1/upload',
info: '/api/v1/info/[id]'
},
message: 'VoltEdge API v1 is active. Please refer to /docs for full integration details.'
});
}