We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ca10fff + 302f03b commit 9843145Copy full SHA for 9843145
doc_source/go-programming-model-handler-types.md
@@ -54,12 +54,12 @@ import (
54
)
55
56
type MyEvent struct {
57
- Name string 'json:"What is your name?"'
58
- Age int 'json:"How old are you?"'
+ Name string `json:"What is your name?"`
+ Age int `json:"How old are you?"`
59
}
60
61
type MyResponse struct {
62
- Message string 'json:"Answer:"'
+ Message string `json:"Answer:"`
63
64
65
func HandleLambdaEvent(event MyEvent) (MyResponse, error) {
@@ -148,4 +148,4 @@ func main() {
148
149
## Next Step<a name="go-programming-model-next-step-context"></a>
150
151
-[The Context Object \(Go\) ](go-programming-model-context.md)
+[The Context Object \(Go\) ](go-programming-model-context.md)
0 commit comments