Created
November 14, 2018 03:04
-
-
Save proclaim/82658c0cbad4ab1ad67af12891001458 to your computer and use it in GitHub Desktop.
very very simple go program for lambda
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"github.com/aws/aws-lambda-go/lambda" | |
) | |
func main() { | |
lambda.Start(handler) | |
} | |
func handler() { | |
fmt.Println("Hello Taiwan!") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment