Created
November 8, 2016 15:42
-
-
Save mweagle/df520c25191600089878a586386ea780 to your computer and use it in GitHub Desktop.
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
// Standard AWS λ function | |
func helloWorld(event *json.RawMessage, | |
context *sparta.LambdaContext, | |
w http.ResponseWriter, | |
logger *logrus.Logger) { | |
helloWorldCounterMetric.Inc(1) | |
fmt.Fprint(w, "Hello World") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment