Skip to content

Instantly share code, notes, and snippets.

@yogeshlonkar
Last active February 8, 2020 19:07
Show Gist options
  • Save yogeshlonkar/68ed52b7f09921d3e91c366a27222f2a to your computer and use it in GitHub Desktop.
Save yogeshlonkar/68ed52b7f09921d3e91c366a27222f2a to your computer and use it in GitHub Desktop.
AWS Golang monorepo lambdas example-handler.go
package handlers
import (
"context"
)
func RequestHandler(ctx context.Context) (string, error) {
return "some-string", nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment