| 28 | ) |
| 29 | |
| 30 | type Static struct { |
| 31 | modName string |
| 32 | instName string |
| 33 | |
| 34 | m map[string][]string |
| 35 | } |
| 36 | |
| 37 | func NewStatic(_ *container.C, modName, instName string) (module.Module, error) { |
| 38 | return &Static{ |
nothing calls this directly
no outgoing calls
no test coverage detected