elvish/util/pprinter.go
2018-10-13 16:51:00 +01:00

8 lines
169 B
Go

package util
// PPrinter wraps the PPrint function.
type PPrinter interface {
// PPrint takes an indentation string and pretty-prints.
PPrint(indent string) string
}