Cleanup: remove unused field IsNewRepo

This commit is contained in:
Stefan Haller
2024-08-18 10:24:52 +02:00
parent a19bb0bbfe
commit dbf6716b9b
-2
View File
@@ -23,7 +23,6 @@ type AppConfig struct {
UserConfigDir string
TempDir string
AppState *AppState
IsNewRepo bool
}
type AppConfigurer interface {
@@ -101,7 +100,6 @@ func NewAppConfig(
UserConfigDir: configDir,
TempDir: tempDir,
AppState: appState,
IsNewRepo: false,
}
return appConfig, nil