| 11 | ) |
| 12 | |
| 13 | type ConfigRepository struct { |
| 14 | CFCLIVersion string |
| 15 | data *Data |
| 16 | mutex *sync.RWMutex |
| 17 | initOnce *sync.Once |
| 18 | persistor configuration.Persistor |
| 19 | onError func(error) |
| 20 | } |
| 21 | |
| 22 | type CCInfo struct { |
| 23 | APIVersion string `json:"api_version"` |
nothing calls this directly
no outgoing calls
no test coverage detected