Created
September 19, 2019 21:45
-
-
Save webdevwilson/058958520c738f6a0178d070961ecf4c 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
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