mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
16 lines
377 B
JavaScript
16 lines
377 B
JavaScript
'use strict'
|
|
|
|
module.exports.handler = (event, context, callback) => {
|
|
const httpData = event.requestContext.http
|
|
const resolve = () =>
|
|
callback(null, {
|
|
statusCode: 200,
|
|
body: JSON.stringify({
|
|
path: httpData.path,
|
|
method: httpData.method,
|
|
}),
|
|
})
|
|
if (httpData.path === '/bar/timeout') setTimeout(resolve, 2000)
|
|
else resolve()
|
|
}
|