mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-13 09:57:51 +08:00
8 lines
151 B
Go
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
|
|
}
|