(record configListRecord)
| 1137 | } |
| 1138 | |
| 1139 | func configListBundle(record configListRecord) outputBundle { |
| 1140 | return outputBundle{ |
| 1141 | jsonValue: record, |
| 1142 | human: func() (string, error) { |
| 1143 | return renderConfigEntries("Config", record.Entries), nil |
| 1144 | }, |
| 1145 | toon: func() (string, error) { |
| 1146 | return renderConfigEntriesToon(configConfigKey, record.Entries), nil |
| 1147 | }, |
| 1148 | } |
| 1149 | } |
| 1150 | |
| 1151 | func configValueBundle(record configValueRecord) outputBundle { |
| 1152 | return outputBundle{ |