mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
'use strict'
|
|
|
|
const streamifyResponse = awslambda.streamifyResponse
|
|
|
|
module.exports.handler = streamifyResponse(async (event, responseStream) => {
|
|
responseStream.write('Hello')
|
|
responseStream.end()
|
|
})
|