NewRegistry creates a new framework registry
(ctx *common.Context)
| 35 | |
| 36 | // NewRegistry creates a new framework registry |
| 37 | func NewRegistry(ctx *common.Context) *Registry { |
| 38 | return &Registry{ |
| 39 | frameworks: []Framework{}, |
| 40 | context: ctx, |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | // Register adds a framework to the registry |
| 45 | func (r *Registry) Register(f Framework) { |
no outgoing calls
no test coverage detected