Useful for debugging when we print the struct
()
| 68 | |
| 69 | // Useful for debugging when we print the struct |
| 70 | func (i *SystemInfo) String() string { |
| 71 | return fmt.Sprintf("%+v", *i) |
| 72 | } |
| 73 | |
| 74 | func (i *SystemInfo) Output(name string) (Output, error) { |
| 75 | if i == nil { |
no outgoing calls
no test coverage detected