github.com/kolbycrouch/elvish@v0.14.1-0.20210614162631-215b9ac1c423/pkg/diag/shower.go (about)

     1  package diag
     2  
     3  // Shower wraps the Show function.
     4  type Shower interface {
     5  	// Show takes an indentation string and shows.
     6  	Show(indent string) string
     7  }