| 76 | } |
| 77 | |
| 78 | type Define struct { |
| 79 | profession string |
| 80 | skill string |
| 81 | drivers []*Field |
| 82 | fields []*Field |
| 83 | columns []string |
| 84 | render map[string]interface{} |
| 85 | } |
| 86 | |
| 87 | func (d *Define) Columns() []string { |
| 88 | return d.columns |
nothing calls this directly
no outgoing calls
no test coverage detected