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