| 35 | } |
| 36 | |
| 37 | type AppConfigurer interface { |
| 38 | GetDebug() bool |
| 39 | |
| 40 | // build info |
| 41 | GetVersion() string |
| 42 | GetName() string |
| 43 | GetBuildSource() string |
| 44 | |
| 45 | GetUserConfig() *UserConfig |
| 46 | GetUserConfigPaths() []string |
| 47 | GetUserConfigDir() string |
| 48 | ReloadUserConfigForRepo(repoConfigFiles []*ConfigFile) error |
| 49 | ReloadChangedUserConfigFiles() (error, bool) |
| 50 | GetTempDir() string |
| 51 | |
| 52 | GetAppState() *AppState |
| 53 | SaveAppState() error |
| 54 | } |
| 55 | |
| 56 | type ConfigFilePolicy int |
| 57 |
no outgoing calls
no test coverage detected