Selaa lähdekoodia

Return nil instead of error (always stat error if first startup [config file does not exist])

ayn2op 3 vuotta sitten
vanhempi
sitoutus
e26a4626c5
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      internal/config/config.go

+ 1 - 1
internal/config/config.go

@@ -76,5 +76,5 @@ func Load() error {
 		}
 	}
 
-	return err
+	return nil
 }