(usage *users.SpaceUsage)
| 75 | } |
| 76 | |
| 77 | func newDuOutput(usage *users.SpaceUsage) duOutput { |
| 78 | return duOutput{ |
| 79 | Used: usage.Used, |
| 80 | Allocation: newDuAllocation(usage.Allocation), |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | func newDuOperationOutput(usage *users.SpaceUsage) jsonOperationOutput { |
| 85 | input := duInput{} |
no test coverage detected