| 25 | ) |
| 26 | |
| 27 | type ActionConfig struct { |
| 28 | MetadataDir string |
| 29 | ActionConfig *types.ActionExecutionConfig |
| 30 | serverFeatureFlags *version.ServerFeatureFlags |
| 31 | cliExtensionConfig *cliextension.Config |
| 32 | ensureCliExt func() error |
| 33 | cleanupCliExt func() |
| 34 | |
| 35 | logger *logrus.Logger |
| 36 | } |
| 37 | |
| 38 | func New(ec *cli.ExecutionContext, baseDir string) *ActionConfig { |
| 39 | cfg := &ActionConfig{ |
nothing calls this directly
no outgoing calls
no test coverage detected