1export async function handler(event, context) { 2 return { 3 statusCode: 200, 4 headers: { 'Content-Type': 'text/plain' }, 5 body: new Date().toISOString(), 6 }; 7}