Skip to content

Commit 84caff2

Browse files
committed
Review comments
1 parent 5472732 commit 84caff2

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88

99
# Serverless framework
1010
node_modules/
11+
.serverless/

functions/go-hello-world/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
module cors-go
1+
module hello-go
22

3-
go 1.19
3+
go 1.21
44

55
require (
66
github.com/scaleway/serverless-functions-go v0.1.2

functions/go-hello-world/handler.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package cors
1+
package hello
22

33
import (
44
"fmt"

functions/go-hello-world/handler_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package cors
1+
package hello
22

33
import (
44
"io"

functions/go-hello-world/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

functions/go-hello-world/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "cors-go",
2+
"name": "hello-go",
33
"version": "1.0.0",
44
"main": "index.js",
55
"scripts": {

functions/go-hello-world/test/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
handler "cors-go"
4+
handler "hello-go"
55

66
"github.com/scaleway/serverless-functions-go/local"
77
)

0 commit comments

Comments
 (0)