Skip to content

Instantly share code, notes, and snippets.

@yogeshlonkar
Created February 8, 2020 19:08
Show Gist options
  • Save yogeshlonkar/a9b0f514e01e0fbb5580d559ebe2c61f to your computer and use it in GitHub Desktop.
Save yogeshlonkar/a9b0f514e01e0fbb5580d559ebe2c61f to your computer and use it in GitHub Desktop.
AWS Golang monorepo lambdas example-main.go
package main
import (
"github.com/aws/aws-lambda-go/lambda"
"your-repo/handlers"
)
func main() {
lambda.Start(handlers.RequestHandler)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment