Files
Neon-Desk/frontend/app/api/me/route.ts

11 lines
180 B
TypeScript

export async function GET() {
return Response.json({
user: {
id: 1,
email: 'operator@local.fiscal',
name: 'Local Operator',
image: null
}
});
}