fix: Allow fallthrough even if config file is missing

This commit is contained in:
christiangoeschel 2025-03-30 23:21:41 -04:00
parent 4e2ddf629d
commit b96c06d15b
Signed by: christiangoeschel
GPG Key ID: 9C5DF8B5AF67BFB2

View File

@ -125,7 +125,6 @@ func initConfig() {
fmt.Println("Using config file:", viper.ConfigFileUsed())
} else {
fmt.Printf("Unable to read config file: %s\nError: %s\n", viper.ConfigFileUsed(), err)
os.Exit(2)
}
if err := viper.Unmarshal(&config); err != nil {