(obj interface{})
| 45 | } |
| 46 | |
| 47 | func Ppj(obj interface{}) { |
| 48 | b, err := json.MarshalIndent(obj, "", " ") |
| 49 | if err != nil { |
| 50 | errors.PrintError(err) |
| 51 | } |
| 52 | fmt.Println(string(b)) |
| 53 | } |
| 54 | |
| 55 | func Ppy(obj interface{}) { |
| 56 | b, err := yaml.Marshal(obj) |
nothing calls this directly
no test coverage detected