Skip to content

Instantly share code, notes, and snippets.

@webdevwilson
Created September 19, 2019 21:45
Show Gist options
  • Save webdevwilson/058958520c738f6a0178d070961ecf4c to your computer and use it in GitHub Desktop.
Save webdevwilson/058958520c738f6a0178d070961ecf4c to your computer and use it in GitHub Desktop.
func SayHello() (interface{}, error) {
msg := os.Getenv("MSG")
return fmt.Sprintf("Hello from %s", msg), nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment