| 30 | ) |
| 31 | |
| 32 | type SQLTable struct { |
| 33 | modName string |
| 34 | instName string |
| 35 | |
| 36 | wrapped *SQL |
| 37 | } |
| 38 | |
| 39 | func NewSQLTable(_ *container.C, modName, instName string) (module.Module, error) { |
| 40 | return &SQLTable{ |
nothing calls this directly
no outgoing calls
no test coverage detected