()
| 291 | } |
| 292 | |
| 293 | func (p *SBOMInternalProvisioner) ConfigSpec() hcldec.ObjectSpec { return p.Provisioner.ConfigSpec() } |
| 294 | func (p *SBOMInternalProvisioner) FlatConfig() interface{} { |
| 295 | // Try to delegate to inner provisioner if it implements FlatConfig |
| 296 | if fc, ok := p.Provisioner.(interface{ FlatConfig() interface{} }); ok { |
nothing calls this directly
no test coverage detected