| 29 | ) |
| 30 | |
| 31 | type Chain struct { |
| 32 | modName string |
| 33 | instName string |
| 34 | |
| 35 | chain []module.Table |
| 36 | optional []bool |
| 37 | } |
| 38 | |
| 39 | func NewChain(_ *container.C, modName, instName string) (module.Module, error) { |
| 40 | return &Chain{ |
nothing calls this directly
no outgoing calls
no test coverage detected