9 lines
255 B
TypeScript
9 lines
255 B
TypeScript
import type { NextRequest } from 'next/server';
|
|
import { proxyReleaseDownload } from '@/lib/proxy-release-download';
|
|
|
|
export const runtime = 'nodejs';
|
|
|
|
export async function GET(request: NextRequest) {
|
|
return proxyReleaseDownload(request, 'windows');
|
|
}
|