NewManager creates a new instance of the interface Manager
(ctx devspacecontext.Context, configOptions *loader.ConfigOptions)
| 27 | |
| 28 | // NewManager creates a new instance of the interface Manager |
| 29 | func NewManager(ctx devspacecontext.Context, configOptions *loader.ConfigOptions) Manager { |
| 30 | return &manager{ |
| 31 | resolver: NewResolver(ctx, configOptions), |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | func NewManagerWithParser(ctx devspacecontext.Context, configOptions *loader.ConfigOptions, parser loader.Parser) Manager { |
| 36 | return &manager{ |
no test coverage detected