mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +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()
|
|
})
|