Skip to content

Instantly share code, notes, and snippets.

@proclaim
Created November 14, 2018 03:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save proclaim/82658c0cbad4ab1ad67af12891001458 to your computer and use it in GitHub Desktop.
Save proclaim/82658c0cbad4ab1ad67af12891001458 to your computer and use it in GitHub Desktop.
very very simple go program for lambda
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