Skip to content

Instantly share code, notes, and snippets.

@dipeshhkc
Last active May 22, 2021 10:32
Show Gist options
  • Save dipeshhkc/8be7a48df956fd9e0f511d5d8d8507de to your computer and use it in GitHub Desktop.
Save dipeshhkc/8be7a48df956fd9e0f511d5d8d8507de to your computer and use it in GitHub Desktop.
package main
func loadenv() {
if err := godotenv.Load(); err != nil {
log.Fatal("Error loading .env file")
}
}
func main() {
fmt.Println("Main Application Starts")
//Loading Environmental Variable
loadenv()
log.Fatal(route.RunAPI(":8090"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment