Last active
November 6, 2017 21:21
-
-
Save wilk/8fe038436f880be3ef8ff0af5351d2d6 to your computer and use it in GitHub Desktop.
Goxfer
This file contains 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
package main | |
import ( | |
"os" | |
) | |
var ( | |
DB_HOST = os.Getenv("DB_HOST") | |
DB_NAME = os.Getenv("DB_NAME") | |
DB_COLLECTION_NAME = os.Getenv("DB_COLLECTION_NAME") | |
) | |
func main() { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment