elvish/pkg/diag/shower.go
2020-03-31 00:27:08 +01:00

8 lines
151 B
Go

package diag
// Shower wraps the Show function.
type Shower interface {
// Show takes an indentation string and shows.
Show(indent string) string
}