mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
import { NextResponse } from 'next/server'
|
|
import { getStatusResponse } from '@/status'
|
|
|
|
export function GET() {
|
|
return NextResponse.json(getStatusResponse())
|
|
}
|