(d map[string]interface{})
| 93 | } |
| 94 | |
| 95 | func (t *cmdAdmin) handleConfigDump(d map[string]interface{}) { |
| 96 | switch { |
| 97 | case d["-1"].(bool): |
| 98 | t.dumpConfigV1(d) |
| 99 | default: |
| 100 | t.dumpConfigV3(d) |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | type ConfigV3 struct { |
| 105 | Slots []*models.SlotMapping `json:"slots,omitempty"` |
no test coverage detected