(record configShowRecord, entries []configEntry)
| 1125 | } |
| 1126 | |
| 1127 | func configShowBundle(record configShowRecord, entries []configEntry) outputBundle { |
| 1128 | return outputBundle{ |
| 1129 | jsonValue: record, |
| 1130 | human: func() (string, error) { |
| 1131 | return renderConfigEntries("Config", entries), nil |
| 1132 | }, |
| 1133 | toon: func() (string, error) { |
| 1134 | return renderConfigEntriesToon(configConfigKey, entries), nil |
| 1135 | }, |
| 1136 | } |
| 1137 | } |
| 1138 | |
| 1139 | func configListBundle(record configListRecord) outputBundle { |
| 1140 | return outputBundle{ |