mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-03-17 14:16:58 +00:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
import { NextResponse } from 'next/server'
|
|
|
|
export async function GET() {
|
|
return NextResponse.json({
|
|
message: 'Hello from Orama Network!',
|
|
timestamp: new Date().toISOString(),
|
|
service: 'nextjs-ssr-test'
|
|
})
|
|
}
|