mirror of
https://github.com/blackboxprogramming/blackroad-apps.git
synced 2026-03-17 06:57:10 -05:00
All published on BlackRoad OS App Store: - Dashboard, Metrics, Vault, Agent Hub - Commander, Analytics, Monitor - Deployer, Studio, Sync - Plus the original First App Zero gatekeepers. Zero fees.
17 lines
353 B
TypeScript
17 lines
353 B
TypeScript
import { NextResponse } from 'next/server'
|
|
|
|
export async function GET() {
|
|
return NextResponse.json({
|
|
status: 'healthy',
|
|
service: 'RoadMap API',
|
|
version: '1.0.0',
|
|
timestamp: new Date().toISOString(),
|
|
features: [
|
|
'Real-time collaboration',
|
|
'Project management',
|
|
'Task tracking',
|
|
'Team analytics'
|
|
]
|
|
})
|
|
}
|