//
pkg.gl
Category
github.com/ibiscum/Go-Programming-Cookbook-Second-Edition
chapter13
lambda
functions
greeter2
package
0.0.0-20241212173216-745cb4b42230
Repository:
https://github.com/ibiscum/go-programming-cookbook-second-edition.git
Documentation:
pkg.go.dev
Overview
Versions
1
Dependencies
3
Dependents
0
Files
19 SLOC
#
Functions
HandleRequest
HandleRequest will be called when the lambda function is invoked it takes a Message and returns a Response that contains a greeting this greeting contains the first and last name specified.
#
Structs
Message
Message is the input to the function and includes a FirstName and LastName.
Response
Response is sent back and contains a greeting string.