src.elv.sh@v0.21.0-dev.0.20240515223629-06979efb9a2a/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  }