| 358 | } |
| 359 | |
| 360 | type RawConfig struct { |
| 361 | Ctx context.Context |
| 362 | OriginalRawConfig map[string]interface{} |
| 363 | RawConfig map[string]interface{} |
| 364 | Resolver variable.Resolver |
| 365 | |
| 366 | Config *latest.Config |
| 367 | |
| 368 | resolvedMutex sync.Mutex |
| 369 | resolved map[string]string |
| 370 | } |
| 371 | |
| 372 | func (r *RawConfig) Parse( |
| 373 | ctx context.Context, |
nothing calls this directly
no outgoing calls
no test coverage detected