this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

env stuff

+3 -1
+3 -1
main.go
··· 26 26 27 27 err := godotenv.Load() 28 28 if err != nil { 29 - log.Fatal("Error loading .env file") 29 + if !os.IsNotExist(err) { 30 + log.Fatal("Error loading .env file") 31 + } 30 32 } 31 33 32 34 signals := make(chan os.Signal, 1)