UNPKG
sls3-legacy
Version:
latest (3.42.1)
3.42.1
3.42.0
3.41.1
SLS3 Legacy - A fork of Serverless Framework v3
github.com/deel77/sls3-legacy
deel77/sls3-legacy
sls3-legacy
/
docs
/
providers
/
google
/
examples
/
hello-world
/
node
/
index.js
6 lines
(4 loc)
•
108 B
JavaScript
View Raw
1
2
3
4
5
6
'use strict'
;
exports
.
http
=
(
request, response
) =>
{ response.
status
(
200
).
send
(
'Hello World!'
); };