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