Skip to content

Commit ed5f907

Browse files
committed
update
1 parent b004c3b commit ed5f907

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

main.go

+2-7
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,8 @@ func NewApp() (*App, error) {
2828
}
2929
}
3030

31-
var myEnv map[string]string
32-
myEnv, err := godotenv.Read()
33-
if err != nil {
34-
log.Fatal("Error loading .env file")
35-
}
36-
37-
mongoURI := myEnv["MONGODB_URI"]
31+
// Existing code...
32+
mongoURI := os.Getenv("MONGODB_URI")
3833
if mongoURI == "" {
3934
return nil, errors.New("MONGODB_URI environment variable not set")
4035
}

0 commit comments

Comments
 (0)