File size: 430 Bytes
3353b25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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.'
    });
}